open-nomad/e2e/taskevents/input/simple_batch.nomad

13 lines
191 B
Plaintext
Raw Normal View History

2019-01-04 23:19:00 +00:00
job "simple_batch" {
type = "batch"
datacenters = ["dc1"]
task "simple_batch" {
driver = "raw_exec"
config {
command = "sleep"
args = ["1"]
}
}
}