fluxcd / flagger

Progressive delivery Kubernetes operator (Canary, A/B Testing and Blue/Green deployments)
https://docs.flagger.app
Apache License 2.0
4.86k stars 726 forks source link

Common Ingress with Multiple services #1688

Open rupeshpoojary opened 2 months ago

rupeshpoojary commented 2 months ago

HI Team, Just giving a overview of my current environment structure We have a nginx controller at node port, and then we have multiple ingress created and there are many different services which are behind same ingress but are routed based on URI path regex. for example here is the sample ingress

Kind: Ingress . . . spec: ingressClassName: f01f9f rules:

When i troubleshooted i found the issue As there were multiple canary resource Created for different services but they had same ingress, one of the canary resources takes the ownership and hence the above error occurs

I cannot segregate the Ingress as it is the nature of our application , what could be the possible solution for this ??

rupeshpoojary commented 2 months ago

HI Team, Any Update on this ??