Add allow_privileged integration test.
This commit is contained in:
parent
c6dbe3a5bf
commit
a8ac33d3ab
21
example/privileged_not_allowed.nomad
Normal file
21
example/privileged_not_allowed.nomad
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
job "privileged-not-allowed" {
|
||||||
|
datacenters = ["dc1"]
|
||||||
|
|
||||||
|
group "privileged-not-allowed-group" {
|
||||||
|
task "privileged-not-allowed-task" {
|
||||||
|
driver = "containerd-driver"
|
||||||
|
|
||||||
|
config {
|
||||||
|
image = "ubuntu:16.04"
|
||||||
|
command = "sleep"
|
||||||
|
args = ["600s"]
|
||||||
|
privileged = true
|
||||||
|
}
|
||||||
|
|
||||||
|
resources {
|
||||||
|
cpu = 500
|
||||||
|
memory = 256
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
47
tests/008-test-allow-privileged.sh
Executable file
47
tests/008-test-allow-privileged.sh
Executable file
@ -0,0 +1,47 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
source $SRCDIR/utils.sh
|
||||||
|
job_name=privileged-not-allowed
|
||||||
|
|
||||||
|
# allow_privileged=false set in the plugin config, should deny all privileged jobs.
|
||||||
|
test_allow_privileged() {
|
||||||
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
||||||
|
|
||||||
|
cp agent.hcl agent.hcl.bkp
|
||||||
|
|
||||||
|
sed -i '8 i \ allow_privileged = false' agent.hcl
|
||||||
|
sudo systemctl restart nomad
|
||||||
|
is_systemd_service_active "nomad.service" true
|
||||||
|
|
||||||
|
echo "INFO: Starting nomad ${job_name} job using nomad-driver-containerd."
|
||||||
|
nomad job run privileged_not_allowed.nomad
|
||||||
|
# Sleep for 5 seconds, to allow ${alloc_id} to get populated.
|
||||||
|
sleep 5s
|
||||||
|
|
||||||
|
echo "INFO: Checking status of ${job_name} job."
|
||||||
|
alloc_id=$(nomad job status ${job_name}|grep failed|awk 'NR==1'|cut -d ' ' -f 1)
|
||||||
|
output=$(nomad alloc status $alloc_id)
|
||||||
|
echo -e "$output" |grep "Running privileged jobs are not allowed" &>/dev/null
|
||||||
|
if [ $? -ne 0 ];then
|
||||||
|
echo "ERROR: ${job_name} should have failed to run."
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "INFO: purge nomad ${job_name} job."
|
||||||
|
nomad job stop -purge ${job_name}
|
||||||
|
|
||||||
|
mv agent.hcl.bkp agent.hcl
|
||||||
|
popd
|
||||||
|
}
|
||||||
|
|
||||||
|
cleanup() {
|
||||||
|
if [ -f agent.hcl.bkp ]; then
|
||||||
|
mv agent.hcl.bkp agent.hcl
|
||||||
|
fi
|
||||||
|
sudo systemctl restart nomad
|
||||||
|
is_systemd_service_active "nomad.service" false
|
||||||
|
}
|
||||||
|
|
||||||
|
trap cleanup EXIT
|
||||||
|
|
||||||
|
test_allow_privileged
|
@ -132,7 +132,7 @@ EOF
|
|||||||
sudo systemctl unmask containerd
|
sudo systemctl unmask containerd
|
||||||
echo "INFO: 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" false
|
||||||
|
|
||||||
# Remove default golang (1.7.3) and install a custom version (1.14.3) of golang.
|
# Remove default golang (1.7.3) and install a custom version (1.14.3) of golang.
|
||||||
# This is required for supporting go mod, and to be able to compile nomad-driver-containerd.
|
# This is required for supporting go mod, and to be able to compile nomad-driver-containerd.
|
||||||
@ -184,7 +184,7 @@ EOF
|
|||||||
|
|
||||||
echo "INFO: 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" false
|
||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -216,20 +216,4 @@ is_containerd_driver_active() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
is_systemd_service_active() {
|
|
||||||
local service_name=$1
|
|
||||||
i="0"
|
|
||||||
while test $i -lt 5 && !(systemctl -q is-active "$service_name"); do
|
|
||||||
printf "INFO: %s is down, sleep for 4 seconds.\n" $service_name
|
|
||||||
sleep 4s
|
|
||||||
i=$[$i+1]
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ $i -ge 5 ]; then
|
|
||||||
printf "ERROR: %s didn't come up. exit 1.\n" $service_name
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
printf "INFO: %s is up and running\n" $service_name
|
|
||||||
}
|
|
||||||
|
|
||||||
main "$@"
|
main "$@"
|
||||||
|
@ -25,3 +25,25 @@ is_container_active() {
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
is_systemd_service_active() {
|
||||||
|
local service_name=$1
|
||||||
|
local is_sleep=$2
|
||||||
|
|
||||||
|
i="0"
|
||||||
|
while test $i -lt 5 && !(systemctl -q is-active "$service_name"); do
|
||||||
|
printf "INFO: %s is down, sleep for 4 seconds.\n" $service_name
|
||||||
|
sleep 4s
|
||||||
|
i=$[$i+1]
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $i -ge 5 ]; then
|
||||||
|
printf "ERROR: %s didn't come up. exit 1.\n" $service_name
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$is_sleep" = true ]; then
|
||||||
|
sleep 7s
|
||||||
|
fi
|
||||||
|
printf "INFO: %s is up and running\n" $service_name
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user