Merge pull request #26706 from borismattijssen/patch-1

Automatic merge from submit-queue

Update scheduler_extender.md

[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/.github/PULL_REQUEST_TEMPLATE.md?pixel)]()

The filter call should actually return a schedulerapi.ExtenderFilterResult with an api.NodeList in it, instead of a raw api.NodeList.
This commit is contained in:
k8s-merge-robot 2016-07-01 15:30:06 -07:00 committed by GitHub
commit ac989f60a1

View File

@ -125,7 +125,7 @@ type ExtenderArgs struct {
} }
``` ```
The "filter" call returns a list of nodes (api.NodeList). The "prioritize" call The "filter" call returns a list of nodes (schedulerapi.ExtenderFilterResult). The "prioritize" call
returns priorities for each node (schedulerapi.HostPriorityList). returns priorities for each node (schedulerapi.HostPriorityList).
The "filter" call may prune the set of nodes based on its predicates. Scores The "filter" call may prune the set of nodes based on its predicates. Scores