open-nomad/e2e/taskevents/input/failed_batch.nomad

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
412 B
Plaintext
Raw Normal View History

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
2019-01-04 23:19:00 +00:00
job "failed_batch" {
2019-10-11 12:00:05 +00:00
type = "batch"
datacenters = ["dc1"]
2019-01-04 23:19:00 +00:00
constraint {
attribute = "${attr.kernel.name}"
value = "linux"
}
2019-01-04 23:19:00 +00:00
group "failed_batch" {
restart {
attempts = 0
}
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
task "failed_batch" {
driver = "raw_exec"
2019-10-11 12:00:05 +00:00
2019-01-04 23:19:00 +00:00
config {
command = "SomeInvalidCommand"
}
}
}
}