Hi Idez,
Thanks for your explanation.
I have similar behaviour in my environment where it toggles between the new certificate and the expired one whenever you refresh the endpoint.
May I know how to tell if it's on Static Configuration? Here's is the snippet of my toml file:
traefik.toml: |
defaultEntryPoints = ["http","https"]
debug = false
logLevel = "INFO"
#Config to redirect http to https
[entryPoints]
[entryPoints.http]
address = ":80"
compress = true
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
compress = true
[entryPoints.https.tls]
What to change so I don't need to restart my traefik pods? May I know why it has to be reloaded just to apply the new cert? Lastly, where to find the location of the certs as I didn't define any path.