nomad-mirage-plugin/example/example.nomad
2023-07-02 13:01:32 +02:00

36 lines
623 B
HCL

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
job "example" {
datacenters = ["dc1"]
type = "service"
group "example" {
network {
# mode = "driver"
port "http" {
to = 8080
}
}
task "hello-world" {
driver = "hello-world-example"
config {
unikernel = "/tmp/hello-key.hvt"
# network "device1" {
# ports = ["http", ...]
# ip_arg = "--monitoring"
# gateway_arg = "--xxx"
# }
# args = [...]
}
}
service {
port = "http"
name = "hello-service"
}
}
}