Files
nomad/e2e/nomadexec/input/busybox.hcl
2023-11-10 07:09:24 -06:00

28 lines
425 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
job "busybox" {
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group" {
task "task" {
driver = "docker"
config {
image = "busybox:1"
command = "/bin/sleep"
args = ["infinity"]
}
resources {
cpu = 500
memory = 128
}
}
}
}