nomad-driver-containerd/example/privileged.nomad
2020-06-30 15:23:41 -07:00

37 lines
732 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 = "/target/t1"
source = "/tmp/t1"
options = ["rbind", "ro"]
}
]
}
resources {
cpu = 500
memory = 256
network {
mbits = 10
}
}
}
}
}