open-nomad/e2e/clientstate/sleeper.nomad

21 lines
396 B
HCL

# Sleeper is a fake service that outputs its pid to a file named `pid` to
# assert duplicate tasks are never started.
job "sleeper" {
datacenters = ["dc1"]
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
task "sleeper" {
driver = "raw_exec"
config {
command = "/bin/bash"
args = ["-c", "echo $$ >> pid && sleep 999999"]
}
}
}