72 lines
1.1 KiB
HCL
72 lines
1.1 KiB
HCL
variable "count" {
|
|
type = number
|
|
default = 2
|
|
}
|
|
|
|
job "whoami" {
|
|
region = "global"
|
|
datacenters = ["dc1"]
|
|
|
|
type = "service"
|
|
|
|
group "whoami" {
|
|
count = var.count
|
|
|
|
network {
|
|
mode = "bridge"
|
|
port "web" {
|
|
host_network = "loopback"
|
|
to = 80
|
|
}
|
|
}
|
|
|
|
service {
|
|
name = "whoami"
|
|
port = "web"
|
|
|
|
connect {
|
|
sidecar_service {
|
|
proxy {
|
|
local_service_port = 80
|
|
}
|
|
}
|
|
|
|
sidecar_task {
|
|
resources {
|
|
cpu = 50
|
|
memory = 50
|
|
}
|
|
}
|
|
}
|
|
|
|
check {
|
|
type = "http"
|
|
path = "/health"
|
|
port = "web"
|
|
interval = "10s"
|
|
timeout = "10s"
|
|
}
|
|
|
|
tags = [
|
|
"traefik.enable=true",
|
|
"traefik.http.routers.whoami.entryPoints=websecure",
|
|
]
|
|
}
|
|
|
|
task "whoami" {
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "containous/whoami:latest"
|
|
ports = ["web"]
|
|
args = ["--port", "${NOMAD_PORT_web}"]
|
|
}
|
|
|
|
resources {
|
|
cpu = 50
|
|
memory = 50
|
|
}
|
|
}
|
|
}
|
|
}
|