open-nomad/e2e/events/input/initial.nomad
Drew Bailey 8451de99b2
adds two base event stream e2e tests (#9126)
* adds two base event stream e2e tests

test evaluation filter keys are included

* Apply suggestions from code review

Co-authored-by: Tim Gross <tgross@hashicorp.com>

* gc aftereach

Co-authored-by: Tim Gross <tgross@hashicorp.com>
2020-10-20 08:26:21 -04:00

38 lines
565 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"
env {
version = "0"
}
config {
command = "/bin/sleep"
# change args to update the job, the only changes
args = ["1000000"]
}
resources {
cpu = 20
memory = 20
}
}
}
}