I'm just getting started with traefik and Consul.
I've 3 independent running traefikV2.4.9 instances and want to manage my configurations with Consul and ConsulCatalog.
Therefore, I'm trying to keep my configurations for each instance at one rootkey, because I'm using consul for multiple applications.
So I try to do sth like that:
/traefikV2/instance/...
e.g.
/traefikV2/cluster1
command via cli:
-- -providers.consul.endpoints=consul-consul-server.default.svc.cluster.local:8500
-- -providers.consul.rootkey="traefikV2/cluster1"
...
-- -log.level=debug
Unfortunately, I'm getting this debug from traefik:
time="2021-07-16T19:41:02Z" level=debug msg="WatchTree: traefikV2/cluster1"
time="2021-07-16T19:41:02Z" level=debug msg="List: traefikV2/cluster1"
time="2021-07-16T19:41:02Z" level=error msg="KV connection error: Key not found in store, retrying in 10.021022776s" providerName=consul
Does anybody know whether this setup is possible and could help me?