open-nomad/e2e/servicediscovery/input/consul_provider.nomad

28 lines
442 B
Plaintext
Raw Normal View History

job "service_discovery" {
datacenters = ["dc1"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "service_discovery" {
service {
name = "http-api"
provider = "consul"
tags = ["foo", "bar"]
}
task "test" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "sleep 15000"]
}
}
}
}