filter out inactive negs in isZoneChange#2989
filter out inactive negs in isZoneChange#2989midavadim wants to merge 1 commit intokubernetes:masterfrom
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. DetailsInstructions 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. DetailsNeeds 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.
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 Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
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.