2023-02-27 16:20:30 +00:00
|
|
|
# Copyright (c) HashiCorp, Inc.
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2019-11-29 23:58:03 +00:00
|
|
|
job "example" {
|
|
|
|
datacenters = ["dc1"]
|
|
|
|
type = "batch"
|
|
|
|
|
|
|
|
group "example" {
|
|
|
|
task "hello-world" {
|
|
|
|
driver = "hello-world-example"
|
|
|
|
|
|
|
|
config {
|
|
|
|
greeting = "hello"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|