open-nomad/e2e/servicediscovery/input/nomad_provider.nomad
2023-04-10 15:36:59 +00:00

31 lines
509 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "service_discovery" {
datacenters = ["dc1"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "service_discovery" {
service {
name = "http-api"
provider = "nomad"
tags = ["foo", "bar"]
}
task "test" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "sleep 15000"]
}
}
}
}