Files
nomad/e2e/spread/input/multiple_spread.nomad
2023-04-10 15:36:59 +00:00

44 lines
646 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "r1" {
datacenters = ["dc1", "dc2"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
spread {
attribute = "${node.datacenter}"
weight = 100
}
group "test1" {
count = 10
spread {
attribute = "${meta.rack}"
weight = 100
target "r1" {
percent = 70
}
target "r2" {
percent = 30
}
}
task "test" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "sleep 15000"]
}
}
}
}