Commit bc42e78f authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Migra a Traefik v2

parent ebc4b4ec
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -10,3 +10,6 @@ ALERTMANAGER_INTERVAL=30s
ALERTMANAGER_TIMEOUT=10s
ALERTMANAGER_PROXY=true
ALERTMANAGER_SUBDOMAIN=alertmanager

TRAEFIK_AUTH=user:$apr1$md5password
TRAEFIK_HEALTHCHECK_AUTH=changeme
+9 −6
Original line number Diff line number Diff line
@@ -27,12 +27,15 @@ services:
      update_config:
        delay: ${UPDATE_DELAY:-1m}
      labels:
        traefik.frontend.auth.basic.users: ${UI_AUTH}
        traefik.frontend.rule: Host:${TRAEFIK_SUBDOMAIN:-karma}.${PUBLIC_HOSTNAME}
        traefik.backend: karma
        traefik.backend.healthcheck.path: ${TRAEFIK_HEALTHCHECK_PATH:-/health}
        traefik.backend.healthcheck.interval: ${TRAEFIK_HEALTHCHECK_INTERVAL:-30s}
        traefik.port: '${PORT}'
        traefik.enable: ${TRAEFIK_ENABLE:-true}
        traefik.http.routers.karma.entrypoints: ${TRAEFIK_ENTRYPOINT:-http}
        traefik.http.routers.karma.rule: Host(`${TRAEFIK_SUBDOMAIN:-karma}.${PUBLIC_HOSTNAME}`)
        traefik.http.middlewares.karma-auth.basicauth.users: ${TRAEFIK_AUTH}
        traefik.http.routers.karma.middlewares: karma-auth
        traefik.http.services.karma.loadbalancer.server.port: ${PORT}
        traefik.http.services.karma.loadbalancer.healthcheck.path: ${TRAEFIK_HEALTHCHECK_PATH:-/health}
        traefik.http.services.karma.loadbalancer.healthcheck.interval: ${TRAEFIK_HEALTHCHECK_INTERVAL:-30s}
        traefik.http.services.karma.loadbalancer.healthcheck.headers.authorization: ${TRAEFIK_HEALTHCHECK_AUTH}
      resources:
        limits:
          cpus: '${RESOURCES_LIMITS_CPUS:-0.1}'