open-nomad/e2e/nomad09upgrade/exec.nomad
Michael Schurter ce4a828fd1
Apply suggestions from code review
Co-Authored-By: nickethier <ncethier@gmail.com>
2019-01-23 14:09:49 -05:00

21 lines
254 B
HCL

job "sleep" {
datacenters = ["dc1"]
group "sleep" {
task "sleep" {
driver = "exec"
config {
command = "sleep"
args = ["10000"]
}
resources {
cpu = 100
memory = 32
}
}
}
}