mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
The E2E test for periodic dispatch jobs has a `cron` trigger for once a minute. If the test happens to run at the top of the minute, it's possible for the forced dispatch to run from the test code, then the periodic timer triggers and leaves a running child job. This fails the test because it expects only a single job in the "dead" state. Make it so that the `cron` expression is implausible to run during our test window, and migrate the test off the old framework while we're at it.
32 lines
618 B
HCL
32 lines
618 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
job "periodic" {
|
|
type = "batch"
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
operator = "set_contains_any"
|
|
value = "darwin,linux"
|
|
}
|
|
|
|
periodic {
|
|
# run on Jan 31st at 13:13, only if it's Sunday, to ensure no collisions
|
|
# with our test forcing a dispatch
|
|
cron = "13 13 31 1 7"
|
|
prohibit_overlap = true
|
|
}
|
|
|
|
group "group" {
|
|
task "task" {
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "busybox:1"
|
|
command = "/bin/sh"
|
|
args = ["-c", "sleep 5"]
|
|
}
|
|
}
|
|
}
|
|
}
|