adds traefik job file
This commit is contained in:
commit
612c3707f6
1 changed files with 67 additions and 0 deletions
67
traefik.hcl
Normal file
67
traefik.hcl
Normal file
|
@ -0,0 +1,67 @@
|
|||
job "traefik" {
|
||||
datacenters = ["aperture"]
|
||||
type = "system"
|
||||
|
||||
group "traefik" {
|
||||
network {
|
||||
port "http"{
|
||||
static = 80
|
||||
}
|
||||
port "https" {
|
||||
static = 443
|
||||
}
|
||||
port "admin"{
|
||||
static = 8080
|
||||
}
|
||||
}
|
||||
|
||||
service {
|
||||
name = "traefik-http"
|
||||
provider = "nomad"
|
||||
port = "https"
|
||||
}
|
||||
|
||||
task "traefik" {
|
||||
driver = "docker"
|
||||
config {
|
||||
image = "traefik:2.8"
|
||||
network_mode = "host"
|
||||
|
||||
volumes = [
|
||||
"local/traefik.toml:/etc/traefik/traefik.toml",
|
||||
]
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOF
|
||||
[entryPoints]
|
||||
[entryPoints.web]
|
||||
address = ":80"
|
||||
[entryPoints.websecure]
|
||||
address = ":443"
|
||||
[entryPoints.traefik]
|
||||
address = ":8080"
|
||||
|
||||
[api]
|
||||
dashboard = true
|
||||
insecure = true
|
||||
|
||||
# Enable Consul Catalog configuration backend.
|
||||
[providers.consulCatalog]
|
||||
prefix = "traefik"
|
||||
exposedByDefault = false
|
||||
|
||||
[providers.consulCatalog.endpoint]
|
||||
address = "127.0.0.1:8500"
|
||||
scheme = "http"
|
||||
|
||||
#[providers.nomad]
|
||||
# [providers.nomad.endpoint]
|
||||
# address = "127.0.0.1:4646"
|
||||
# scheme = "http"
|
||||
EOF
|
||||
destination = "/local/traefik.toml"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue