Files
kubernetes/dev/traefik/values.yaml
T
2026-05-31 16:07:30 +02:00

41 lines
758 B
YAML

certificatesResolvers:
letsencrypt:
acme:
email: admin@allarddcs.nl
storage: /data/acme.json
httpChallenge:
entryPoint: web
deployment:
initContainers:
- name: volume-permissions
image: busybox:latest
command: ["sh", "-c", "touch /data/acme.json; chmod -v 600 /data/acme.json"]
volumeMounts:
- mountPath: /data
name: data
persistence:
enabled: true
existingClaim: traefik-pvc
path: /data
ports:
web:
allowACMEByPass: true
websecure:
allowACMEByPass: true
transport:
respondingTimeouts:
readTimeout: 0
writeTimeout: 0
idleTimeout: 0
resources:
requests:
memory: "512Mi"
cpu: "500m"
limits:
memory: "1Gi"
cpu: "1"