open-nomad/e2e/oversubscription/testdata/docker.nomad

28 lines
528 B
Plaintext
Raw Normal View History

2021-03-26 20:17:49 +00:00
job "oversubscription-docker" {
datacenters = ["dc1"]
constraint {
attribute = "${attr.kernel.name}"
operator = "set_contains_any"
value = "darwin,linux"
}
group "group" {
task "task" {
driver = "docker"
config {
image = "busybox:1.29.2"
command = "/bin/sh"
args = ["-c", "cat /sys/fs/cgroup/memory/memory.limit_in_bytes; sleep 1000"]
}
resources {
cpu = 500
memory = 20
memory_max = 30
}
}
}
}