open-nomad/e2e/consul/input/checks_group_update.nomad

86 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-09-03 20:47:53 +00:00
job "group_check" {
datacenters = ["dc1"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
2019-09-03 20:47:53 +00:00
group "group_check" {
network {
mode = "bridge"
}
service {
name = "group-service-1"
port = "9001"
# after update, check name has changed
check {
name = "alive-1a"
type = "script"
task = "test"
interval = "2s"
timeout = "2s"
command = "echo"
args = ["alive-1a"]
}
}
service {
name = "group-service-2"
port = "9002"
check {
name = "alive-2a"
type = "script"
task = "test"
interval = "2s"
timeout = "2s"
command = "echo"
args = ["alive-2a"]
}
# after updating, this check will always pass
check {
name = "alive-2b"
type = "script"
task = "test"
interval = "2s"
timeout = "2s"
command = "echo"
args = ["alive-2b"]
}
}
service {
name = "group-service-3"
port = "9003"
# this check should always time out and so the service
# should not be marked healthy
check {
name = "always-dead"
type = "script"
task = "test"
interval = "2s"
timeout = "1s"
command = "sleep"
args = ["10"]
}
}
count = 1
task "test" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "sleep 15000"]
}
}
}
}