Skip to content
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

Typo of PercentageOfNodesToScore #92568

Merged
merged 1 commit into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/scheduler/apis/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ type KubeSchedulerConfiguration struct {
// DisablePreemption disables the pod preemption feature.
DisablePreemption bool

// PercentageOfNodeToScore is the percentage of all nodes that once found feasible
// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
// for running a pod, the scheduler stops its search for more feasible nodes in
// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
Expand Down
2 changes: 1 addition & 1 deletion staging/src/k8s.io/kube-scheduler/config/v1beta1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type KubeSchedulerConfiguration struct {
// DisablePreemption disables the pod preemption feature.
DisablePreemption *bool `json:"disablePreemption,omitempty"`

// PercentageOfNodeToScore is the percentage of all nodes that once found feasible
// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
// for running a pod, the scheduler stops its search for more feasible nodes in
// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
Expand Down