open-nomad/e2e/nomad09upgrade/rawexec.nomad

25 lines
342 B
HCL

job "sleep" {
datacenters = ["dc1"]
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "sleep" {
task "sleep" {
driver = "raw_exec"
config {
command = "sleep"
args = ["10000"]
}
resources {
cpu = 100
memory = 32
}
}
}
}