Skip to content

Commit 1c658d2

Browse files
authored
Merge pull request kubernetes#92568 from satishbellapu/master
Typo of PercentageOfNodesToScore
2 parents 8ce80c2 + f92072b commit 1c658d2

File tree

2 files changed

+2
-2
lines changed
  • pkg/scheduler/apis/config
  • staging/src/k8s.io/kube-scheduler/config/v1beta1

2 files changed

+2
-2
lines changed

pkg/scheduler/apis/config/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ type KubeSchedulerConfiguration struct {
8080
// DisablePreemption disables the pod preemption feature.
8181
DisablePreemption bool
8282

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

staging/src/k8s.io/kube-scheduler/config/v1beta1/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type KubeSchedulerConfiguration struct {
6464
// DisablePreemption disables the pod preemption feature.
6565
DisablePreemption *bool `json:"disablePreemption,omitempty"`
6666

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

0 commit comments

Comments
 (0)