open-nomad/e2e/taskevents/input/failed_sibling.nomad
2019-01-08 14:39:37 -08:00

28 lines
508 B
HCL

job "failed_sibling" {
type = "service"
datacenters = ["dc1"]
group "failed_sibling" {
restart {
attempts = 0
}
# Only the task named the same as the job has its events tested.
task "failed_sibling" {
driver = "raw_exec"
config {
command = "sleep"
args = ["1000"]
}
}
task "failure" {
driver = "raw_exec"
config {
command = "/bin/sh"
args = ["-c", "sleep 1 && exit 99"]
}
}
}
}