This repository has been archived by the owner on May 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
traefik.hcl
88 lines (71 loc) · 1.56 KB
/
traefik.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
job "traefik-exp" {
datacenters = ["lux"]
type = "system"
group "traefik-exp" {
count = 1
network {
port "http" {
static = 80
host_network = "public"
}
port "http-internal" {
static = 80
host_network = "private"
}
port "api" {
static = 8081
host_network = "private"
}
}
service {
name = "traefik-exp"
port = "api"
tags = ["metrics"]
check {
name = "alive"
type = "tcp"
port = "http"
interval = "10s"
timeout = "2s"
}
}
task "traefik-exp" {
driver = "docker"
config {
image = "traefik:latest"
network_mode = "host"
volumes = [
"local/traefik.toml:/etc/traefik/traefik.toml",
]
}
template {
data = <<EOF
[entryPoints]
[entryPoints.http]
address = "{{ env "NOMAD_IP_http" }}:80"
[entryPoints.http-internal]
address = "{{ env "NOMAD_IP_api" }}:80"
[entryPoints.traefik]
address = "{{ env "NOMAD_IP_api" }}:8081"
[metrics]
[metrics.prometheus]
[api]
dashboard = true
insecure = true
# Enable Consul Catalog configuration backend.
[providers.consulCatalog]
prefix = "traefik"
exposedByDefault = false
[providers.consulCatalog.endpoint]
address = "{{ env "CONSUL_HTTP_ADDR" }}"
scheme = "http"
EOF
destination = "local/traefik.toml"
}
resources {
cpu = 100
memory = 128
}
}
}
}