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

19 lines
272 B
Plaintext
Raw Normal View History

2019-01-04 23:19:00 +00:00
job "simple_batch" {
2019-10-11 12:00:05 +00:00
type = "batch"
datacenters = ["dc1"]
2019-01-04 23:19:00 +00:00
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
2019-01-04 23:19:00 +00:00
task "simple_batch" {
driver = "raw_exec"
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
config {
command = "sleep"
args = ["1"]
}
}
}