18 lines
265 B
HCL
18 lines
265 B
HCL
job "failed_batch" {
|
|
type = "batch"
|
|
datacenters = ["dc1"]
|
|
|
|
group "failed_batch" {
|
|
restart {
|
|
attempts = 0
|
|
}
|
|
|
|
task "failed_batch" {
|
|
driver = "raw_exec"
|
|
config {
|
|
command = "SomeInvalidCommand"
|
|
}
|
|
}
|
|
}
|
|
}
|