mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 03:45:41 +03:00
22 lines
341 B
HCL
22 lines
341 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
job "simple_batch" {
|
|
type = "batch"
|
|
datacenters = ["dc1"]
|
|
|
|
constraint {
|
|
attribute = "${attr.kernel.name}"
|
|
value = "linux"
|
|
}
|
|
|
|
task "simple_batch" {
|
|
driver = "raw_exec"
|
|
|
|
config {
|
|
command = "sleep"
|
|
args = ["1"]
|
|
}
|
|
}
|
|
}
|