nomad-driver-containerd/example/privileged.nomad
2021-01-07 09:57:07 -08:00

34 lines
687 B
HCL

job "privileged" {
datacenters = ["dc1"]
group "privileged-group" {
task "privileged-task" {
driver = "containerd-driver"
config {
image = "docker.io/library/ubuntu:16.04"
command = "sleep"
args = ["600s"]
privileged = true
devices = [
"/dev/loop0",
"/dev/loop1"
]
mounts = [
{
type = "bind"
target = "/tmp/t1"
source = "/tmp/s1"
options = ["rbind", "ro"]
}
]
}
resources {
cpu = 500
memory = 256
}
}
}
}