github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/e2e/taskevents/input/failed_batch.nomad (about) 1 job "failed_batch" { 2 type = "batch" 3 datacenters = ["dc1"] 4 5 constraint { 6 attribute = "${attr.kernel.name}" 7 value = "linux" 8 } 9 10 group "failed_batch" { 11 restart { 12 attempts = 0 13 } 14 15 task "failed_batch" { 16 driver = "raw_exec" 17 18 config { 19 command = "SomeInvalidCommand" 20 } 21 } 22 } 23 }