Skip to content

Commit

Permalink
Merge pull request #1850 from cofyc/fix1819-api-change
Browse files Browse the repository at this point in the history
scheduler/extender: Extend ExtenderFilterResult to include UnschedulableAndUnresolvable nodes
  • Loading branch information
k8s-ci-robot authored Jun 12, 2020
2 parents 143c03f + 6f089a2 commit 3aa92e2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions keps/sig-scheduling/1819-scheduler-extender/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ type ExtenderFilterResult struct {
NodeNames *[]string
// Filtered out nodes where the pod can't be scheduled and the failure messages
FailedNodes FailedNodesMap
// Filtered out nodes where the pod can't be scheduled and preemption would
// not change anything. The value is the failure message same as FailedNodes.
// Nodes specified here takes precedence over FailedNodes.
FailedAndUnresolvableNodes FailedNodesMap
// Error message indicating failure
Error string
}
Expand Down Expand Up @@ -305,3 +309,4 @@ type ExtenderPreemptionResult struct {
- 2017-04-25 Implements [Bind interface](https://github.com/kubernetes/kubernetes/pull/44883)
- 2018-01-24 Implements [Preemption interface](https://github.com/kubernetes/kubernetes/pull/58717)
- 2020-06-01 Convert old design proposal to a KEP and sent it out for review
- 2020-06-09 Extend `ExtenderFilterResult` to include unresolvable nodes and sent it out for review

0 comments on commit 3aa92e2

Please sign in to comment.