nomad-driver-containerd/example/privileged_not_allowed.nomad
2021-03-04 13:13:19 -08:00

22 lines
419 B
HCL

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
}
}
}
}