Add check for privileged mode.

This commit is contained in:
Shishir Mahajan 2020-06-30 16:26:36 -07:00
parent 0743fd011d
commit f6fc267328
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 13 additions and 5 deletions

View File

@ -17,8 +17,8 @@ job "privileged" {
mounts = [
{
type = "bind"
target = "/target/t1"
source = "/tmp/t1"
target = "/tmp/t1"
source = "/tmp/s1"
options = ["rbind", "ro"]
}
]

View File

@ -28,9 +28,17 @@ test_privileged_nomad_job() {
exit 1
fi
# Check if container is running in privileged mode.
expected_capabilities="37"
actual_capabilities=$(nomad alloc exec -job privileged capsh --print|grep -i bounding|cut -d '=' -f 2|awk '{split($0,a,","); print a[length(a)]}')
if [ "$expected_capabilities" != "$actual_capabilities" ]; then
echo "ERROR: container is not running in privileged mode."
exit 1
fi
# Check if bind mount exists.
echo "INFO: Checking if bind mount exists."
output=$(nomad alloc exec -job privileged cat /target/t1/bind.txt)
output=$(nomad alloc exec -job privileged cat /tmp/t1/bind.txt)
if [ "$output" != "hello" ]; then
echo "ERROR: bind mount does not exist in container rootfs."
exit 1
@ -59,8 +67,8 @@ test_privileged_nomad_job() {
}
setup_bind_source() {
mkdir -p /tmp/t1
echo hello > /tmp/t1/bind.txt
mkdir -p /tmp/s1
echo hello > /tmp/s1/bind.txt
}
is_privileged_container_active() {