open-nomad/jobspec/test-fixtures/reschedule-job.hcl

21 lines
341 B
HCL

job "foo" {
datacenters = ["dc1"]
type = "batch"
reschedule {
attempts = 15
interval = "30m"
delay = "10s",
delay_function = "constant"
}
group "bar" {
count = 3
task "bar" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "echo hi"]
}
}
}
}