I have Traefik 1.7 running as a DaemonSet with consul
as KV
store. I want to migrate to Traefik v2 which does not support consul
as KV
store in community edition.
I tried to retrieve existing cert from consul with consul kv export traefik-external-certificates/acme/account
which is in the following format.
[
{
"key": "traefik-external-certificates/acme/account/lock",
"flags": 36789972625689376455,
"value": "wsdrtgghbfdrtgbvftyhbvgyujh0"
},
{
"key": "traefik-external-certificates/acme/account/object",
"flags": 36789972625689376455,
"value": "***********************"
}
]
How can I use this existing certificate in Traefik v2 ?
If this is not possible then how can I force renew existing certificate so when Traefik v2 starts up it gets the new certificate ?