Files
nomad/e2e/allocstats/input/raw_exec.nomad
Danielle Lancashire d058dabe3e chore: initial hclfmt
2019-10-11 14:00:05 +02:00

18 lines
318 B
HCL

job "test_raw" {
datacenters = ["dc1"]
type = "service"
group "test" {
count = 1
task "test1" {
driver = "raw_exec"
config {
command = "bash"
args = ["-c", "var=10000;while true; do a=$(awk -v x=$var 'BEGIN{print sqrt(x)}'); ((var++)); done"]
}
}
}
}