Hi Folks,
I've been working with my team to introduce Canary releases to our environment. We have a unique case where we need to use middleware to add canary headers dictated by a backend service. After which we want to redirect our requests to a separate Canary Traefik-proxy. We're running into a problem with re-directing requests post middleware as the route selection has already occurred.
We've gone down the road of implementing TLS. termination from the middleware and attempting to re-direct from the middleware. This isn't ideal, and we're running into problems with gRPC requests.
Looking any recommendations for how we can perform redirects after running our middleware. 302 redirects may not be respected.
Thanks,