77 lines
2.5 KiB
Bash
Executable File
77 lines
2.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
test_redis_nomad_job() {
|
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
|
|
|
echo "INFO: Starting nomad redis job using nomad-driver-containerd."
|
|
nomad job run redis.nomad
|
|
|
|
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
|
if [ $redis_status != "running" ];then
|
|
echo "ERROR: Error in getting redis job status."
|
|
exit 1
|
|
fi
|
|
|
|
# Even though $(nomad job status) reports redis job status as "running"
|
|
# The actual container process might not be running yet.
|
|
# We need to wait for actual container to start running before trying exec.
|
|
echo "INFO: Wait for redis container to get into RUNNING state, before trying exec."
|
|
is_redis_container_active
|
|
|
|
echo "INFO: Inspecting redis job."
|
|
redis_status=$(nomad job inspect redis|jq -r '.Job .Status')
|
|
if [ $redis_status != "running" ];then
|
|
echo "ERROR: Error in inspecting redis job."
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: Exec redis job and check current working directory (cwd)."
|
|
exec_output=$(nomad alloc exec -job redis pwd)
|
|
if [ $exec_output != "/home/redis" ]; then
|
|
echo "ERROR: Error in exec'ing redis job and checking current working directory (cwd)."
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: Check if default seccomp is enabled."
|
|
output=$(nomad alloc exec -job redis cat /proc/1/status | grep Seccomp)
|
|
seccomp_code=$(echo $output|cut -d' ' -f2)
|
|
if [ $seccomp_code != "2" ]; then
|
|
echo "ERROR: default seccomp is not enabled."
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: Stopping nomad redis job."
|
|
nomad job stop redis
|
|
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
|
if [ $redis_status != "dead(stopped)" ];then
|
|
echo "ERROR: Error in stopping redis job."
|
|
exit 1
|
|
fi
|
|
|
|
echo "INFO: purge nomad redis job."
|
|
nomad job stop -purge redis
|
|
popd
|
|
}
|
|
|
|
is_redis_container_active() {
|
|
i="0"
|
|
while test $i -lt 5
|
|
do
|
|
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
|
if [ $? -eq 0 ]; then
|
|
echo "INFO: redis container is up and running"
|
|
break
|
|
fi
|
|
echo "INFO: redis container is down, sleep for 4 seconds."
|
|
sleep 4s
|
|
i=$[$i+1]
|
|
done
|
|
|
|
if [ $i -ge 5 ]; then
|
|
echo "ERROR: redis container didn't come up. exit 1."
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
test_redis_nomad_job
|