Add comments.

This commit is contained in:
Shishir Mahajan 2020-06-30 16:35:10 -07:00
parent f6fc267328
commit a0277bf288
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
3 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash
# readonly_rootfs, cap_add and cap_drop flags are tested as part of this test.
test_capabilities_nomad_job() {
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example

View File

@ -1,5 +1,6 @@
#!/bin/bash
# privileged mode, devices and mounts are tested as part of this test.
test_privileged_nomad_job() {
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
@ -29,6 +30,7 @@ test_privileged_nomad_job() {
fi
# Check if container is running in privileged mode.
echo "INFO: Checking 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