Using version 2.10.6 of the helm chart, I have deployed Traefik with this custom configuration:
additionalArguments:
- "--entrypoints.proxy.address=:6809/tcp"
- "--log.level=DEBUG"
- "--log.format=json"
- "--providers.kubernetescrd"
- "--providers.kubernetesingress=true"
...
I see the entrypoint "proxy" in the Traefik dashboard, but I don't see an endpoint created in the Traefik kubernetes service, which gives these endpoints:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
traefik LoadBalancer 10.103.192.224 localhost 80:30869/TCP,443:31097/TCP 32d app.kubernetes.io/instance=traefik-traefik-v2,app.kubernetes.io/name=traefik
Any ideas why I am not seeing the endpoint for port 6809?