nomad-mirage-plugin/example/example.nomad
2020-02-12 21:07:05 -05:00

14 lines
210 B
HCL

job "example" {
datacenters = ["dc1"]
type = "batch"
group "example" {
task "hello-world" {
driver = "hello-world-example"
config {
greeting = "hello"
}
}
}
}