open-nomad/e2e/taskevents/input/failed_batch.nomad

18 lines
265 B
Plaintext
Raw Normal View History

2019-01-04 23:19:00 +00:00
job "failed_batch" {
type = "batch"
datacenters = ["dc1"]
group "failed_batch" {
restart {
attempts = 0
}
task "failed_batch" {
driver = "raw_exec"
config {
command = "SomeInvalidCommand"
}
}
}
}