-
Notifications
You must be signed in to change notification settings - Fork 301
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
Avoid unnecessary backend service update in NEG linker #1162
Conversation
Hi @skmatti. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not think this PR is needed as this is included in the composite NEG type
ingress-gce/pkg/backends/neg_linker.go
Line 56 in 15f450f
neg, err := l.negGetter.GetNetworkEndpointGroup(negName, group.Zone, utils.GetAPIVersionFromServicePort(&sp)) |
The issue still exists as the utility function does not consider beta features ingress-gce/pkg/utils/serviceport.go Lines 61 to 66 in 15f450f
|
/ok-to-test |
LGTM from my side. I will let @prameshj to take a final look |
The change looks good to me. But I am not sure how we are avoiding an unnecessary update here. I see version lookup unified and extra logging added. |
There is an api version section in the self link. When you get backend-service with beta API, the selfLink of its backends all contain beta. Same for NEG selfLink. So for example, when you have beta feature enabled on backend-service. NegLinker will use beta API to get backend-service and use alpha or v1 API to get NEG. Then the NEG selfLink is always different because the API version section is different. Hence the negLinker will always try to update the backend service on every sync even though it is a noop. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: freehan, skmatti The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Stuff like this needs to go into the commit message. Otherwise people reading the code later will have no idea that this is why the change was made.
|
No description provided.