open-nomad/e2e/deployment/input/deployment_auto1.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

62 lines
950 B
HCL

job "deployment_auto.nomad" {
datacenters = ["dc1"]
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "one" {
count = 3
update {
max_parallel = 3
auto_promote = true
canary = 2
}
task "one" {
driver = "raw_exec"
config {
command = "/bin/sleep"
# change args to update the job, the only changes
args = ["1000001"]
}
resources {
cpu = 20
memory = 20
}
}
}
group "two" {
count = 3
update {
max_parallel = 2
auto_promote = true
canary = 2
min_healthy_time = "2s"
}
task "two" {
driver = "raw_exec"
config {
command = "/bin/sleep"
# change args to update the job, the only changes
args = ["2000001"]
}
resources {
cpu = 20
memory = 20
}
}
}
}