open-nomad/e2e/rescheduling/input/rescheduling_maxp_autorevert.hcl

36 lines
513 B
HCL
Raw Normal View History

2018-03-29 16:35:45 +00:00
job "demo3" {
datacenters = ["dc1"]
type = "service"
group "t2" {
count = 3
task "t2" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "ssleep 5000"]
}
}
update {
max_parallel = 1
min_healthy_time = "5s"
healthy_deadline = "10m"
auto_revert = true
}
restart {
attempts = 0
mode = "fail"
}
reschedule {
unlimited = "true"
# attempts = 0
}
}
}