28 lines
486 B
HCL
28 lines
486 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
job "networking" {
|
|
datacenters = ["dc1", "dc2"]
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
value = "linux"
|
|
}
|
|
|
|
group "bridged" {
|
|
network {
|
|
hostname = "mylittlepony-${NOMAD_ALLOC_INDEX}"
|
|
mode = "bridge"
|
|
}
|
|
|
|
task "sleep" {
|
|
driver = "docker"
|
|
config {
|
|
image = "busybox:1"
|
|
command = "/bin/sleep"
|
|
args = ["300"]
|
|
}
|
|
}
|
|
}
|
|
}
|