22 lines
331 B
Plaintext
22 lines
331 B
Plaintext
|
job "operator_scheduler" {
|
||
|
datacenters = ["dc1"]
|
||
|
type = "batch"
|
||
|
|
||
|
constraint {
|
||
|
attribute = "${attr.kernel.name}"
|
||
|
value = "linux"
|
||
|
}
|
||
|
|
||
|
group "operator_scheduler" {
|
||
|
|
||
|
task "test" {
|
||
|
driver = "raw_exec"
|
||
|
|
||
|
config {
|
||
|
command = "bash"
|
||
|
args = ["-c", "sleep 1"]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|