values.yaml 881 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. image:
  3. repository: traefik
  4. tag: v3.5.1
  5. pullPolicy: IfNotPresent
  6. # --> Change redirect HTTP to HTTPs by default here...
  7. ports:
  8. web:
  9. redirections:
  10. entryPoint:
  11. to: websecure
  12. scheme: https
  13. permanent: true # <-- Change this to false if you want a temporary redirect
  14. # <--
  15. # --> (Optional) Securely expose the Traefik dashboard...
  16. # ingressRoute:
  17. # dashboard:
  18. # enabled: true
  19. # entryPoints:
  20. # - websecure
  21. # matchRule: Host(`your-traefik-dashboard-fqdn`) # <-- Replace with your FQDN
  22. # middlewares:
  23. # - name: traefik-web-ui-middleware # <-- Replace with your authentication middleware
  24. # tls:
  25. # secretName: traefik-web-ui-tls # <-- Replace with your TLS secret name
  26. # <--
  27. # --> (Optional) Change log settings here...
  28. # logs:
  29. # general:
  30. # level: ERROR
  31. # access:
  32. # enabled: false
  33. # <--