-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Is it possible to skip creation of Path condition in alb listener rule? #3541
Comments
@uyilmaz, thanks for the feedback. Just try to understand the use case here, what's the listener rules that you don't need a "path" condition? Like if you are building |
@oliviassss Thanks for replying! For my use case it doesn't matter if it's |
Please provide this functionality and make alb ingress similar like nginx ingress, because nginx ingress also supports path rewriting but alb doesn't support. |
I'm also interested in it. |
Looking forward to this feature as well. Similar as described above, I am routing only on the host header so the path condition is not needed. |
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 |
Is your feature request related to a problem?
There is a limit of 5 conditions per rule in alb. Rules created by alb ingress controller always include "Http Host Header" and "Path" conditions, which reduces available condition count to 3. Is it possible to skip adding the Path condition, so we can have 4 additional free condition slots? Because when path is /*, it also works without having the condition at all, so 1 condition slot is needlessly consumed.
Describe the solution you'd like
I'd like to be able to skip adding the "Path" condition to the listener rule and match using "Http Host Header" only.
Describe alternatives you've considered
Changing
pathType
toImplementationSpecific
or dropping any kind of path declarations in the ingress controller doesn't change anything, the path condition is still created.The text was updated successfully, but these errors were encountered: