open-nomad/e2e/nomad09upgrade/exec.nomad
Tim Gross c9d92f845f
e2e: add a Windows client to test runner (#6735)
* 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
2019-11-25 13:31:00 -05:00

25 lines
338 B
HCL

job "sleep" {
datacenters = ["dc1"]
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "sleep" {
task "sleep" {
driver = "exec"
config {
command = "sleep"
args = ["10000"]
}
resources {
cpu = 100
memory = 32
}
}
}
}