-
Notifications
You must be signed in to change notification settings - Fork 40k
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
azure: filter load balancer backend nodes to PrimaryAvailabilitySet (if set) #34526
azure: filter load balancer backend nodes to PrimaryAvailabilitySet (if set) #34526
Conversation
Jenkins GCE e2e failed for commit e57eecf1a9033d4c5131a0faee18611d0103b85f. Full PR test history. The magic incantation to run this job again is |
e57eecf
to
433243c
Compare
(No material change, just rebased to try to avoid hitting test flakes) |
Jenkins verification failed for commit 433243c4b7f09b86e755205ea40b9d819427ca39. Full PR test history. The magic incantation to run this job again is |
433243c
to
113c5e3
Compare
(Updated to fix the lint issue.) |
@k8s-bot test this |
@k8s-bot test this [submit-queue is verifying that this PR is safe to merge] |
Automatic merge from submit-queue |
…availabilityset Automatic merge from submit-queue azure: lower log priority for skipped nic update message **What this PR does / why we need it**: Very minor, just wanted to remove some log noise I introduced in #34526. I chose `V(3)` since it aligns with the other nicupdate message printed out here, and will be hidden for the usual default of `--v=2`. **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note NONE ```
@jessfraz Can we tag this for a cherry-pick into 1.4.x? Along with the follow-up PR: #34730 I'm looking at the cherry-pick doc and I can't seem to tell if other action from me is required other than getting these two PRs tagged. |
got it and ill open the cherrypicks, thanks! |
Commit found in the "release-1.4" branch appears to be this PR. Removing the "cherrypick-candidate" label. If this is an error find help to get your PR picked. |
…ck-of-#34526-kubernetes#34730-origin-release-1.4 Automatic merge from submit-queue Automated cherry pick of kubernetes#34526 kubernetes#34730 Cherry pick of kubernetes#34526 kubernetes#34730 on release-1.4. kubernetes#34526: azure: filter load balancer backend nodes to kubernetes#34730: azure: lower log priority for skipped nic update message
What this PR does / why we need it:
PrimaryAvailabilitySetName
) to the Azure CloudProvider config structThis is required to:
Without this PR, or if the field is not set in a cluster that contains two availabilitysets, then the following is observed:
Which issue this PR fixes: Fixes #34293
Unknowns:
LoadBalancedAvailabilitySet
might be more descriptive thanPrimaryAvailabilitySet
, but is also a misnomer sincekube-proxy
will still end up routing requests to all relevant nodes.Release note:
CC: @brendandburns, @anhowe
This change is