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
314 B
HCL
24 lines
314 B
HCL
job "sleep" {
|
|
datacenters = ["dc1"]
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
value = "linux"
|
|
}
|
|
|
|
group "sleep" {
|
|
task "sleep" {
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "redis:5.0"
|
|
}
|
|
|
|
resources {
|
|
cpu = 100
|
|
memory = 32
|
|
}
|
|
}
|
|
}
|
|
}
|