Merge pull request #112637 from sanposhiho/pre-filter-skip

feature(scheduler): won't run Filter if PreFilter returned a Skip status
This commit is contained in:
Kubernetes Prow Robot
2022-11-08 06:16:37 -08:00
committed by GitHub
4 changed files with 181 additions and 35 deletions

View File

@@ -91,6 +91,7 @@ const (
// Wait is used when a Permit plugin finds a pod scheduling should wait.
Wait
// Skip is used when a Bind plugin chooses to skip binding.
// Also, if a PreFilter plugin returns Skip, coupled Filter plugin will be skipped.
Skip
)