open-nomad/e2e/rescheduling/input/rescheduling_fail.nomad

37 lines
496 B
Plaintext
Raw Normal View History

job "test2" {
datacenters = ["dc1", "dc2"]
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
type = "service"
group "t2" {
count = 3
2018-03-29 16:35:45 +00:00
task "t2" {
driver = "raw_exec"
2018-03-29 16:35:45 +00:00
config {
2018-03-29 16:35:45 +00:00
command = "bash"
args = ["-c", "lol 5000"]
}
}
2018-03-29 16:35:45 +00:00
restart {
2018-03-29 16:35:45 +00:00
attempts = 0
delay = "0s"
mode = "fail"
}
2018-03-29 16:35:45 +00:00
reschedule {
2018-03-29 16:35:45 +00:00
attempts = 2
interval = "5m"
unlimited = false
2018-03-29 16:35:45 +00:00
}
}
2018-03-29 16:35:45 +00:00
}