open-nomad/jobspec/test-fixtures/service-check-initial-status.hcl
2016-08-16 14:34:36 -07:00

24 lines
430 B
HCL

job "check_initial_status" {
type = "service"
group "group" {
count = 1
task "task" {
service {
tags = ["foo", "bar"]
port = "http"
check {
name = "check-name"
type = "http"
interval = "10s"
timeout = "2s"
initial_status = "passing"
}
}
}
}
}