open-nomad/jobspec/test-fixtures/tg-network-with-hostname.hcl
2023-04-10 15:36:59 +00:00

38 lines
576 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "foo" {
datacenters = ["dc1"]
group "bar" {
count = 3
shutdown_delay = "14s"
network {
mode = "bridge"
hostname = "foobar"
port "http" {
static = 80
to = 8080
host_network = "public"
}
}
task "bar" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "echo hi"]
}
resources {
network {
mbits = 10
}
}
}
}
}