open-nomad/e2e/jobsubmissions/input/huge.hcl
Seth Hoenig dbb6edd96d
e2e: add e2e tests for job submission api (#16841)
* e2e: add e2e tests for job submission api

* e2e: fixup callers of AllocLogs

* fix typo
2023-04-12 08:36:17 -05:00

28 lines
347 B
HCL

job "huge" {
type = "batch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
meta {
key = "REPLACE"
}
group "group" {
task "task" {
driver = "raw_exec"
config {
command = "/usr/bin/false"
}
resources {
cpu = 10
memory = 16
}
}
}
}