nomad-driver-nix2/example/example.nomad
2022-11-28 11:33:28 +01:00

15 lines
210 B
HCL

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