diff --git a/jobs/ingress/traefik.hcl b/jobs/ingress/traefik.hcl index 5a69962..0dd2c11 100644 --- a/jobs/ingress/traefik.hcl +++ b/jobs/ingress/traefik.hcl @@ -1,40 +1,65 @@ job "traefik" { datacenters = ["aperture"] - node_pool = "ingress" + node_pool = "ingress" type = "service" group "traefik" { network { - port "http"{ + port "http" { static = 80 } port "https" { static = 443 } - port "admin"{ + port "admin" { static = 8080 } + port "smtp" { + static = 25 + } + port "submission" { + static = 587 + } + port "submissions" { + static = 465 + } + port "imap" { + static = 143 + } + port "imaps" { + static = 993 + } + port "pop3" { + static = 110 + } + port "pop3s" { + static = 995 + } + port "managesieve" { + static = 4190 + } } service { - name = "traefik-http" + name = "traefik-http" provider = "nomad" - port = "https" + port = "https" } task "traefik" { driver = "docker" config { - image = "traefik" + image = "traefik" network_mode = "host" volumes = [ "local/traefik.toml:/etc/traefik/traefik.toml", + "/storage/nomad/traefik/acme/acme.json:/acme.json", ] } template { - data = <