open-nomad/e2e/isolation/input/alloc_exec.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
572 B
HCL
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "alloc_exec" {
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group" {
update {
min_healthy_time = "2s"
}
reschedule {
attempts = 0
unlimited = false
}
restart {
attempts = 0
mode = "fail"
}
task "sleep" {
driver = "exec"
config {
command = "sleep"
args = ["infinity"]
}
resources {
cpu = 10
memory = 16
}
}
}
}