Files
nomad/e2e/scheduler_sysbatch/input/sysbatch_periodic.nomad
2023-04-10 15:36:59 +00:00

34 lines
544 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "sysbatchjob" {
datacenters = ["dc1", "dc2"]
type = "sysbatch"
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
periodic {
cron = "*/15 * * * * *"
prohibit_overlap = true
}
group "sysbatch_job_group" {
count = 1
task "sysbatch_task" {
driver = "docker"
config {
image = "busybox:1"
command = "/bin/sh"
args = ["-c", "echo hi; sleep 1"]
}
}
}
}