-
Notifications
You must be signed in to change notification settings - Fork 317
filter out inactive negs in isZoneChange #2989
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
base: master
Are you sure you want to change the base?
filter out inactive negs in isZoneChange #2989
Conversation
|
Hi @midavadim. 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-sigs/prow repository. |
|
/assign @swetharepakula |
|
/hold |
|
@swetharepakula please check if provided update looks fine for you and can fix this problem. If yes I will proceed with testing |
|
/ok-to-test |
05c2c6f to
26da96a
Compare
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: midavadim The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
26da96a to
259298b
Compare
|
I have added unittest for this update. |
|
/unhold |
| refs = append(refs, neg) | ||
| } | ||
| if tc.negCRStateInactive { | ||
| refs[0].State = negv1beta1.InactiveState |
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.
Can we make all of the NEGs inactive instead of just 1?
This makes the what the flag does consistent. Otherwise, it is a little non-obvious that we are only affecting the first one to be inactive.
Or I would change negCRStateInactive to be instead be a list of zones where inactive negs exist. And we can make the refs considering that.
The function sees no difference ({"us-central1-a"} == {"us-central1-a"}) and returns false.
Solution
This is why the proposed change to isZoneChange is so critical. By making it ignore INACTIVE NEGs, it can correctly detect the transition from "no active zones" to "one active zone," triggering the necessary reconciliation to bring the NEG back to an ACTIVE state and fix the load balancer.