-
Notifications
You must be signed in to change notification settings - Fork 303
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
GCE resource leak with v1 frontend namer #965
Comments
@skmatti What is the status of this issue? |
Discussed with @freehan and decided that we are not going to fix this special case. May be this should be marked as one of the known issues. Also, v1.8.1 and above will not run into this issue. |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
/close |
@skmatti: Closing this issue. 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. |
@skmatti did you update the known issues if this is closed? |
v1 frontend namer leaks GCE loadbalancer forntend resources for the following ingress names,
Examples:
ingress--1, ingress--2
Basically, when there exist two consecutive hyphens in namespace or name.
Few of the other cases are (in
<namespace>/<name>
format),namespace-/ing1, namespace/-ing2
The current workflow for v1 frontend namer parses load-balancer name incorrectly.
For example,
URL map
k8s-um-default-my--ingress--260743b4176675c7
is parsed asdefault-my-260743b4176675c7
which should have been parsed asdefault-my--ingress-260743b4176675c7
.The text was updated successfully, but these errors were encountered: