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
19 lines
272 B
HCL
19 lines
272 B
HCL
job "simple_batch" {
|
|
type = "batch"
|
|
datacenters = ["dc1"]
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
value = "linux"
|
|
}
|
|
|
|
task "simple_batch" {
|
|
driver = "raw_exec"
|
|
|
|
config {
|
|
command = "sleep"
|
|
args = ["1"]
|
|
}
|
|
}
|
|
}
|