2023-04-10 15:36:59 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2019-01-04 23:19:00 +00:00
|
|
|
job "failed_batch" {
|
2019-10-11 12:00:05 +00:00
|
|
|
type = "batch"
|
|
|
|
datacenters = ["dc1"]
|
2019-01-04 23:19:00 +00:00
|
|
|
|
2019-11-25 18:31:00 +00:00
|
|
|
constraint {
|
|
|
|
attribute = "${attr.kernel.name}"
|
|
|
|
value = "linux"
|
|
|
|
}
|
|
|
|
|
2019-01-04 23:19:00 +00:00
|
|
|
group "failed_batch" {
|
|
|
|
restart {
|
|
|
|
attempts = 0
|
|
|
|
}
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-01-04 23:19:00 +00:00
|
|
|
task "failed_batch" {
|
|
|
|
driver = "raw_exec"
|
2019-10-11 12:00:05 +00:00
|
|
|
|
2019-01-04 23:19:00 +00:00
|
|
|
config {
|
|
|
|
command = "SomeInvalidCommand"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|