Files
nomad/e2e/isolation/input/cgroup_devices.hcl
2023-08-10 17:27:29 -05:00

42 lines
649 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
job "cgroup_devices" {
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group1" {
task "task1" {
driver = "raw_exec"
config {
command = "/bin/sleep"
args = ["infinity"]
}
resources {
cpu = 50
memory = 50
}
}
}
group "group2" {
task "task2" {
driver = "raw_exec"
config {
command = "/bin/sleep"
args = ["infinity"]
}
resources {
cpu = 50
memory = 50
}
}
}
}