-
Notifications
You must be signed in to change notification settings - Fork 40.3k
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
Fixed the scheduler framework pending state. #130228
base: master
Are you sure you want to change the base?
Fixed the scheduler framework pending state. #130228
Conversation
This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The 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. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: thisisharrsh 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 |
@@ -746,6 +746,9 @@ func (f *frameworkImpl) RunPreFilterPlugins(ctx context.Context, state *framewor | |||
returnStatus = s | |||
continue | |||
} | |||
|
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.
We should add comments to the pending field to prevent users from ignoring this rule when calling, rather than adding comments when the code returns.
@@ -736,7 +736,7 @@ func (f *frameworkImpl) RunPreFilterPlugins(ctx context.Context, state *framewor | |||
s.SetPlugin(pl.Name()) | |||
if s.Code() == framework.UnschedulableAndUnresolvable { | |||
// In this case, the preemption shouldn't happen in this scheduling cycle. | |||
// So, no need to execute all PreFilter. | |||
// So, no need to execute all PreFilter.k |
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.
nit: is this forget to remove?
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 meant, can you enhance the comment here:
https://github.com/kubernetes/kubernetes/blob/master/pkg/scheduler/framework/interface.go#L243
Oh, my bad. I'll close this PR too and make the changes in the file soon. |
you can just do in this pr
|
Yeah, you can just update this PR. The reason last time I suggested recreating the PR is because that was a huge direction change |
and also renew pr title and commit info :) |
What type of PR is this?
/kind documentation
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #129405
Special notes for your reviewer:
Does this PR introduce a user-facing change?
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: