Howdy friends,
I want to mirror traffic across X namespaces to event-listener services.
Currently we have a single ingress handling this.
We currently have quite a bit of infrastructure, so I would like to avoid moving from:
networking.k8s.io/v1/Ingress
to
traefik.io/v1alpha1/IngressRoute
-> traefik.io/v1alpha1/TraefikService
Is this possible through annotation or other configuration?
I just don't want to mess with the Ingress, since we are using other supporting Kubernetes controllers that interact with ingress. I am fine with using TraefikService
.
Any thoughts, ideas, alternative routes? Thanks!