open-nomad/e2e/taskevents/input/simple_batch.nomad
2019-01-08 07:20:53 -08:00

13 lines
191 B
HCL

job "simple_batch" {
type = "batch"
datacenters = ["dc1"]
task "simple_batch" {
driver = "raw_exec"
config {
command = "sleep"
args = ["1"]
}
}
}