mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 16:23:25 +01:00
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
# Traefik Helm Chart Values Template
|
|
# ---
|
|
image:
|
|
repository: traefik
|
|
version: v3.1.4
|
|
pullPolicy: IfNotPresent
|
|
|
|
# (Optional) Log settings
|
|
# logs:
|
|
# general:
|
|
# level: ERROR
|
|
# access:
|
|
# enabled: false
|
|
|
|
# (Optional) Change number of replicas
|
|
# deployment:
|
|
# replicas: 1
|
|
|
|
# (Optional) Enable Prometheus Metrics, requires metrics port to be exposed!
|
|
# metrics:
|
|
# prometheus:
|
|
# entryPoint: metrics
|
|
|
|
# Configure EntryPoints
|
|
ports:
|
|
web:
|
|
# StandardHTTP
|
|
port: 8000
|
|
exposed: true
|
|
exposedPort: 80
|
|
# (Optional) Redirect HTTP to HTTPs by default
|
|
# redirectTo:
|
|
# port: websecure
|
|
websecure:
|
|
# Standard HTTPS
|
|
port: 8443
|
|
exposed: true
|
|
exposedPort: 443
|
|
tls:
|
|
enabled: true
|
|
# (Optional) Enable HTTP3
|
|
# http3:
|
|
# enabled: false
|
|
# (Optional) When enabled Prometheus Metrics will be exposed on this port
|
|
# metrics:
|
|
# Prometheus Metrics
|
|
# port: 9100
|
|
# exposed: false
|
|
# exposedPort: 9100
|
|
|
|
# Create a default IngressClass
|
|
ingressClass:
|
|
enabled: true
|
|
isDefaultClass: true
|