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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
654 B
Plaintext
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
2019-01-04 23:19:00 +00:00
job "completed_leader" {
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
group "completed_leader" {
restart {
attempts = 0
}
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
# Only the task named the same as the job has its events tested.
task "completed_leader" {
driver = "raw_exec"
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
config {
command = "sleep"
args = ["1000"]
}
}
task "leader" {
leader = true
driver = "raw_exec"
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
config {
command = "sleep"
args = ["1"]
}
}
}
}