-
Hello, We can see a clear separation of responsibilities between Gateway and HTTPRoutes. That's a good thing, but, is it possible for the Infrastructure team to provide a Gateway in one namespace, and that the dev teams can deploy HTTPRoutes that use this Gateway in another namespaces ? What I understand here is that if the TeamA deploys an HTTPRoute in NamespaceA, and the TeamB deploys another HTTPRoute in NamespaceB, and if we want those 2 HTTPRoute are using the same Gateway, I need to deploy the same Gateway in NamespaceA and NamespaceB. Is that right? Or is it possible to point the Thank you for your explanations. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
The
spec.parentRefs
of the HTTPRoute (well, any Route) can be safely pointed to a Gateway in another namespace as long as the receiving Gateway also configures thespec.allowedRoutes
section. (The default Gateway behavior is only to accept Routes from the same namespace, but that can be overridden usingspec.allowedRoutes
).