Updates.
This commit is contained in:
parent
6dd2a1d5ba
commit
3628e3bd1e
@ -3,43 +3,42 @@
|
|||||||
test_redis_nomad_job() {
|
test_redis_nomad_job() {
|
||||||
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
||||||
|
|
||||||
echo "Starting nomad redis job using nomad-driver-containerd."
|
echo "INFO: Starting nomad redis job using nomad-driver-containerd."
|
||||||
nomad job run redis.nomad
|
nomad job run redis.nomad
|
||||||
|
|
||||||
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
||||||
if [ $redis_status != "running" ];then
|
if [ $redis_status != "running" ];then
|
||||||
echo "Error in getting redis job status."
|
echo "ERROR: Error in getting redis job status."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Even though $(nomad job status) reports redis job status as "running"
|
# Even though $(nomad job status) reports redis job status as "running"
|
||||||
# The actual container process might not be running yet.
|
# The actual container process might not be running yet.
|
||||||
# We need to wait for actual container to start running before trying exec.
|
# We need to wait for actual container to start running before trying exec.
|
||||||
echo "Wait for redis container to get into RUNNING state, before trying exec."
|
echo "INFO: Wait for redis container to get into RUNNING state, before trying exec."
|
||||||
is_redis_container_active
|
is_redis_container_active
|
||||||
|
|
||||||
echo "Inspecting redis job."
|
echo "INFO: Inspecting redis job."
|
||||||
redis_status=$(nomad job inspect redis|jq -r '.Job .Status')
|
redis_status=$(nomad job inspect redis|jq -r '.Job .Status')
|
||||||
if [ $redis_status != "running" ];then
|
if [ $redis_status != "running" ];then
|
||||||
echo "Error in inspecting redis job."
|
echo "ERROR: Error in inspecting redis job."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Exec redis job."
|
echo "INFO: Exec redis job."
|
||||||
exec_output=$(nomad alloc exec -job redis echo hello_exec)
|
exec_output=$(nomad alloc exec -job redis echo hello_exec)
|
||||||
if [ $exec_output != "hello_exec" ]; then
|
if [ $exec_output != "hello_exec" ]; then
|
||||||
echo "Error in exec'ing redis job."
|
echo "ERROR: Error in exec'ing redis job."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Stopping nomad redis job."
|
echo "INFO: Stopping nomad redis job."
|
||||||
nomad job stop redis
|
nomad job stop redis
|
||||||
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
redis_status=$(nomad job status -short redis|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
||||||
if [ $redis_status != "dead(stopped)" ];then
|
if [ $redis_status != "dead(stopped)" ];then
|
||||||
echo "Error in stopping redis job."
|
echo "ERROR: Error in stopping redis job."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,17 +49,17 @@ is_redis_container_active() {
|
|||||||
do
|
do
|
||||||
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
sudo CONTAINERD_NAMESPACE=nomad ctr task ls|grep -q RUNNING
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
echo "redis container is up and running"
|
echo "INFO: redis container is up and running"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
echo "redis container is down, sleep for 3 seconds."
|
echo "INFO: redis container is down, sleep for 3 seconds."
|
||||||
sleep 3s
|
sleep 3s
|
||||||
i=$[$i+1]
|
i=$[$i+1]
|
||||||
done
|
done
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
if [ $i -ge 5 ]; then
|
if [ $i -ge 5 ]; then
|
||||||
echo "redis container didn't come up. exit 1."
|
echo "ERROR: redis container didn't come up. exit 1."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -3,31 +3,30 @@
|
|||||||
test_signal_handler_nomad_job() {
|
test_signal_handler_nomad_job() {
|
||||||
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
||||||
|
|
||||||
echo "Starting nomad signal handler job using nomad-driver-containerd."
|
echo "INFO: Starting nomad signal handler job using nomad-driver-containerd."
|
||||||
nomad job run signal.nomad
|
nomad job run signal.nomad
|
||||||
|
|
||||||
echo "Checking status of signal handler job."
|
echo "INFO: Checking status of signal handler job."
|
||||||
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
||||||
if [ $signal_status != "running" ];then
|
if [ $signal_status != "running" ];then
|
||||||
echo "Error in getting signal handler job status."
|
echo "ERROR: Error in getting signal handler job status."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Inspecting signal handler job."
|
echo "INFO: Inspecting signal handler job."
|
||||||
signal_status=$(nomad job inspect signal|jq -r '.Job .Status')
|
signal_status=$(nomad job inspect signal|jq -r '.Job .Status')
|
||||||
if [ $signal_status != "running" ]; then
|
if [ $signal_status != "running" ]; then
|
||||||
echo "Error in inspecting signal handler job."
|
echo "ERROR: Error in inspecting signal handler job."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Stopping nomad signal handler job."
|
echo "INFO: Stopping nomad signal handler job."
|
||||||
nomad job stop signal
|
nomad job stop signal
|
||||||
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
signal_status=$(nomad job status -short signal|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
|
||||||
if [ $signal_status != "dead(stopped)" ];then
|
if [ $signal_status != "dead(stopped)" ];then
|
||||||
echo "Error in stopping signal handler job."
|
echo "ERROR: Error in stopping signal handler job."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -18,11 +18,8 @@ PASS_STATUS=0
|
|||||||
# Please don't run these tests (./run_tests.sh) on your local host, as these are meant to be
|
# Please don't run these tests (./run_tests.sh) on your local host, as these are meant to be
|
||||||
# destructive and can modify (or destroy) software on your host system.
|
# destructive and can modify (or destroy) software on your host system.
|
||||||
main() {
|
main() {
|
||||||
echo "Starting setup."
|
|
||||||
setup
|
setup
|
||||||
echo "Setup finished successfully."
|
echo "INFO: Checking if nomad-driver-containerd is up and running, and nomad is ready to accept jobs."
|
||||||
|
|
||||||
echo "Checking if nomad-driver-containerd is up and running, and nomad is ready to accept jobs."
|
|
||||||
is_containerd_driver_active
|
is_containerd_driver_active
|
||||||
|
|
||||||
run_tests $@
|
run_tests $@
|
||||||
@ -104,7 +101,7 @@ EOF
|
|||||||
|
|
||||||
sudo mv containerd.service /lib/systemd/system/containerd.service
|
sudo mv containerd.service /lib/systemd/system/containerd.service
|
||||||
sudo systemctl daemon-reload
|
sudo systemctl daemon-reload
|
||||||
echo "Starting containerd daemon."
|
echo "INFO: Starting containerd daemon."
|
||||||
sudo systemctl start containerd
|
sudo systemctl start containerd
|
||||||
is_systemd_service_active "containerd.service"
|
is_systemd_service_active "containerd.service"
|
||||||
|
|
||||||
@ -124,7 +121,7 @@ EOF
|
|||||||
sudo chmod +x /usr/local/bin/nomad
|
sudo chmod +x /usr/local/bin/nomad
|
||||||
rm -f nomad_${NOMAD_VERSION}_linux_amd64.zip
|
rm -f nomad_${NOMAD_VERSION}_linux_amd64.zip
|
||||||
|
|
||||||
echo "Building nomad-driver-containerd."
|
echo "INFO: Building nomad-driver-containerd."
|
||||||
cd ~/go/src/github.com/Roblox/nomad-driver-containerd
|
cd ~/go/src/github.com/Roblox/nomad-driver-containerd
|
||||||
make build
|
make build
|
||||||
echo "move containerd-driver to /tmp/nomad-driver-containerd."
|
echo "move containerd-driver to /tmp/nomad-driver-containerd."
|
||||||
@ -153,7 +150,7 @@ WantedBy=multi-user.target
|
|||||||
EOF
|
EOF
|
||||||
sudo mv nomad.service /lib/systemd/system/nomad.service
|
sudo mv nomad.service /lib/systemd/system/nomad.service
|
||||||
sudo systemctl daemon-reload
|
sudo systemctl daemon-reload
|
||||||
echo "Starting nomad server and nomad-driver-containerd."
|
echo "INFO: Starting nomad server and nomad-driver-containerd."
|
||||||
sudo systemctl start nomad
|
sudo systemctl start nomad
|
||||||
is_systemd_service_active "nomad.service"
|
is_systemd_service_active "nomad.service"
|
||||||
popd
|
popd
|
||||||
@ -168,16 +165,16 @@ is_containerd_driver_active() {
|
|||||||
rc=$?
|
rc=$?
|
||||||
set -e
|
set -e
|
||||||
if [[ $rc -eq 0 && $status = "true" ]]; then
|
if [[ $rc -eq 0 && $status = "true" ]]; then
|
||||||
echo "containerd driver is up and running."
|
echo "INFO: containerd driver is up and running."
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
echo "containerd driver is down, sleep for 3 seconds."
|
echo "INFO: containerd driver is down, sleep for 3 seconds."
|
||||||
sleep 3s
|
sleep 3s
|
||||||
i=$[$i+1]
|
i=$[$i+1]
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $i -ge 5 ]; then
|
if [ $i -ge 5 ]; then
|
||||||
echo "containerd driver didn't come up. exit 1."
|
echo "ERROR: containerd driver didn't come up. exit 1."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -186,16 +183,16 @@ is_systemd_service_active() {
|
|||||||
local service_name=$1
|
local service_name=$1
|
||||||
i="0"
|
i="0"
|
||||||
while test $i -lt 5 && !(systemctl -q is-active "$service_name"); do
|
while test $i -lt 5 && !(systemctl -q is-active "$service_name"); do
|
||||||
printf "%s is down, sleep for 3 seconds.\n" $service_name
|
printf "INFO: %s is down, sleep for 3 seconds.\n" $service_name
|
||||||
sleep 3s
|
sleep 3s
|
||||||
i=$[$i+1]
|
i=$[$i+1]
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ $i -ge 5 ]; then
|
if [ $i -ge 5 ]; then
|
||||||
printf "%s didn't come up. exit 1.\n" $service_name
|
printf "ERROR: %s didn't come up. exit 1.\n" $service_name
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
printf "%s is up and running\n" $service_name
|
printf "INFO: %s is up and running\n" $service_name
|
||||||
}
|
}
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user