c9d92f845f
* Adds a constraint to prevent tests from landing on Windows * Improve Terraform output for mixed windows/linux clients * Makes some Windows client config fixes from 0.10.2 testing
24 lines
344 B
HCL
24 lines
344 B
HCL
job "failed_batch" {
|
|
type = "batch"
|
|
datacenters = ["dc1"]
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
value = "linux"
|
|
}
|
|
|
|
group "failed_batch" {
|
|
restart {
|
|
attempts = 0
|
|
}
|
|
|
|
task "failed_batch" {
|
|
driver = "raw_exec"
|
|
|
|
config {
|
|
command = "SomeInvalidCommand"
|
|
}
|
|
}
|
|
}
|
|
}
|