Files
nomad/e2e/nodedrain/input/drain_deadline.nomad
2023-08-10 17:27:29 -05:00

36 lines
522 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
job "drain_deadline" {
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
migrate {
max_parallel = 1
min_healthy_time = "30s"
}
group "group" {
count = 2
task "task" {
driver = "docker"
config {
image = "busybox:1"
command = "/bin/sh"
args = ["-c", "sleep 600"]
}
resources {
cpu = 256
memory = 64
}
}
}
}