2023-04-10 15:36:59 +00:00
|
|
|
# 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
|
|
|
|
2019-11-25 18:31: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"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|