nomad-driver-containerd/tests/009-test-auth.sh
Shishir Mahajan 42fc67cc80 Update versions, run nomad in non-dev mode and fix tests.
Signed-off-by: Shishir Mahajan <smahajan@roblox.com>
2021-09-02 16:39:33 -07:00

31 lines
848 B
Bash
Executable File

#!/bin/bash
source $SRCDIR/utils.sh
job_name=auth
# test auth
test_auth_nomad_job() {
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
echo "INFO: Starting nomad $job_name job using nomad-driver-containerd."
nomad job run -detach $job_name.nomad
wait_nomad_job_status $job_name failed
echo "INFO: Checking can not pull image without auth info."
local alloc_id
alloc_id=$(nomad job status auth|grep Allocations -A2|tail -n 1 |awk '{print $1}')
nomad status "$alloc_id"|grep -q "pull access denied, repository does not exist or may require authorization"
if [ $? -ne 0 ];then
echo "ERROR: Can not found pull access denied in alloc log."
exit 1
fi
echo "INFO: purge nomad ${job_name} job."
nomad job stop -detach -purge ${job_name}
popd
}
test_auth_nomad_job