Add comments.
This commit is contained in:
parent
f6fc267328
commit
a0277bf288
@ -9,7 +9,7 @@ job "privileged" {
|
|||||||
image = "docker.io/library/ubuntu:16.04"
|
image = "docker.io/library/ubuntu:16.04"
|
||||||
command = "sleep"
|
command = "sleep"
|
||||||
args = ["600s"]
|
args = ["600s"]
|
||||||
privileged = true
|
privileged = true
|
||||||
devices = [
|
devices = [
|
||||||
"/dev/loop0",
|
"/dev/loop0",
|
||||||
"/dev/loop1"
|
"/dev/loop1"
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# readonly_rootfs, cap_add and cap_drop flags are tested as part of this test.
|
||||||
test_capabilities_nomad_job() {
|
test_capabilities_nomad_job() {
|
||||||
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# privileged mode, devices and mounts are tested as part of this test.
|
||||||
test_privileged_nomad_job() {
|
test_privileged_nomad_job() {
|
||||||
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
|
||||||
|
|
||||||
@ -29,6 +30,7 @@ test_privileged_nomad_job() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Check if container is running in privileged mode.
|
# Check if container is running in privileged mode.
|
||||||
|
echo "INFO: Checking if container is running in privileged mode."
|
||||||
expected_capabilities="37"
|
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)]}')
|
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
|
if [ "$expected_capabilities" != "$actual_capabilities" ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user