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

39 lines
557 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: BUSL-1.1
# This "env" job simply invokes 'env' using raw_exec.
job "env" {
type = "batch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
group "group" {
reschedule {
attempts = 0
unlimited = false
}
restart {
attempts = 0
mode = "fail"
}
task "task" {
driver = "raw_exec"
config {
command = "env"
}
resources {
cpu = 10
memory = 10
}
}
}
}