-
Notifications
You must be signed in to change notification settings - Fork 39.8k
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
servicecontroller: use consistent node criteria #45773
servicecontroller: use consistent node criteria #45773
Conversation
We have two node selection functions: includeNodeFromNodeList and getNodeConditionPredicate, and the logic is different. The logic should be the same, so remove includeNodeFromNodeList and just use getNodeConditionPredicate everywhere. Fix kubernetes#45772
b4e2e6d
to
976e046
Compare
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.
Look ok to me cc: @freehan
/approve |
@k8s-bot pull-kubernetes-federation-e2e-gce test this |
ping @thockin - this is pretty nasty ... we have two node selection functions, so LBs are created with a different set of nodes than is selected on updates (IIUC) |
I am a little overwhelmed at the moment - whats the priority of this?
…On Tue, May 23, 2017 at 7:43 PM, Justin Santa Barbara < ***@***.***> wrote:
ping @thockin <https://github.com/thockin> - this is pretty nasty ... we
have two node selection functions, so LBs are created with a different set
of nodes than is selected on updates (IIUC)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#45773 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFVgVK3S393OBJCZmCy_YC5BoO_UWzCQks5r85ltgaJpZM4NaJK6>
.
|
@mikedanese BUILD file change in pkg/controller needs approval |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: freehan, justinsb, mikedanese
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
@justinsb: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. 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. I understand the commands that are listed here. |
@k8s-bot node-e2e test this |
@k8s-bot node-e2e test this |
@k8s-bot node-e2e test this |
@k8s-bot pull-kubernetes-node-e2e test this |
@k8s-bot pull-kubernetes-node-e2e test this |
Automatic merge from submit-queue |
We have two node selection functions: includeNodeFromNodeList and
getNodeConditionPredicate, and the logic is different.
The logic should be the same, so remove includeNodeFromNodeList and just
use getNodeConditionPredicate everywhere.
Fix #45772