open-nomad/e2e/taskevents/input/completed_leader.nomad
2019-10-11 14:00:05 +02:00

31 lines
504 B
HCL

job "completed_leader" {
type = "batch"
datacenters = ["dc1"]
group "completed_leader" {
restart {
attempts = 0
}
# Only the task named the same as the job has its events tested.
task "completed_leader" {
driver = "raw_exec"
config {
command = "sleep"
args = ["1000"]
}
}
task "leader" {
leader = true
driver = "raw_exec"
config {
command = "sleep"
args = ["1"]
}
}
}
}