Hello,
I'm trying to setup a service with traefik as ingress.
I've an issue when I'm trying to install traefik with the following values for the helm chart (below) : When I upgrade my service (thanks to gitlab CI/CD, made as a chart), it's working, the challenge success and I get certificate.
If I have service running, and install the traefik ingress controller thanks to Helm, certificates generation failed on traefik startup.
I'm trying to solve this issue since many days, I need your help to debug that...
Thanks !
Gaël
values.yml
image: traefik
imageTag: 1.7.13
serviceType: LoadBalancer
#replicas: 3
ssl:
enabled: true
enforced: true
permanentRedirect: true
acme:
enabled: true
onHostRule: true
challengeType: "http-01"
delayBeforeCheck: 120
rbac:
enabled: true
## Enable the /metrics endpoint, for now only supports prometheus
## set to true to enable metric collection by prometheus
deployment:
hostPort:
httpEnabled: true
httpsEnabled: true
dashboardEnabled: false
httpPort: 80
httpsPort: 443
deploymentStrategy:
rollingUpdate:
maxSurge: 1
maxUnavailable: 0
type: RollingUpdate
#kvprovider:
# storeAcme: true
# importAcme: true
# consul:
# endpoint: "consul:8500"
# watch: true
# prefix: traefik
#