-
Notifications
You must be signed in to change notification settings - Fork 4.2k
update node info processors to include unschedulable nodes #8520
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?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: elmiko 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 |
i'm working on adding more unit tests for this behavior, but i wanted to share this solution so we could start talking about it. |
a0ebb28
to
3270172
Compare
i've rewritten this patch to use all nodes as the secondary value instead of using a new list of ready unschedulable nodes. |
i need to do a little more testing on this locally, but i think this is fine for review. |
// Last resort - unready/unschedulable nodes. | ||
for _, node := range nodes { | ||
// we want to check not only the ready nodes, but also ready unschedulable nodes. | ||
for _, node := range append(nodes, allNodes...) { |
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'm not sure that this is appropriate to append these. theoretically the allNodes
should already contain nodes
. i'm going to test this out using just allNodes
.
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.
due to filtering that happens in obtainNodeLists
, we need to combine both lists of nodes here.
3270172
to
cb2649a
Compare
i updated the argument names in the |
it seems like the update to the mixed node processor needs a little more investigation. |
This change updates the `Process` function of the node info processor interface so that it can accept a second list of nodes. The second list contains all the nodes that are not in the first list. This will allow the mixed node info processor to properly detect unready and unschedulable nodes for use as templates.
cb2649a
to
fd53c0b
Compare
it looks like we need both the |
PR needs rebase. 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. |
What type of PR is this?
/kind bug
What this PR does / why we need it:
This PR adds a new lister for ready unschedulable nodes, it also connects that lister to a new parameter in the node info processors
Process
function. This change enables the autoscaler to use unschedulable, but otherwise ready, nodes as a last resort when creating node templates for scheduling simulation.Which issue(s) this PR fixes:
Fixes #8380
Special notes for your reviewer:
I'm not sure if this is the best way to solve this problem, but i am proposing this for further discussion and design.
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: