-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Think about grouping mechanisms #101
Comments
The Kubernetes project currently lacks enough contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues. This bot triages un-triaged issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /close not-planned |
@k8s-triage-robot: Closing this issue, marking it as "Not Planned". In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Why this is needed:
Within Gateway API, a route can be used with multiple Gateways.
Translating pre Gateway API resources (ingresses and CRDs) to Gateway API resources can yield different and equally working resources layout(Gateway API objects). Some common examples are:
A generic http -> https redirect route can be shared with Gateways. Or we can have multiple routes with the same spec, each attached to a different Gateway.
An HTTPRoute that adds headers for a service when it gets a request
The above are just random thoughts, but real world use-cases. Essentially, every route that defines the way a service is exposed can either be duplicated or just one route that is attached to multiple Gateways (which is what the community encourages in most cases).
Another example can be cases where we can de-duplicate multiple ingresses into 1 Gateway and multiple HTTPRoutes. Like ingress-nginx for example.
We need to think on a process to merge/deduplicate such cases (or at least suggest this de-duplication to the user). It could perhaps be a post-processing layer.
The text was updated successfully, but these errors were encountered: