File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
pkg/scheduler/framework/plugins Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const (
40
40
// Name is the name of the plugin used in the plugin registry and configurations.
41
41
Name = "NodePorts"
42
42
43
- // preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
43
+ // preFilterStateKey is the key in CycleState to NodePorts pre-computed data.
44
44
// Using the name of the plugin will likely help us avoid collisions with other plugins.
45
45
preFilterStateKey = "PreFilter" + Name
46
46
)
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const (
38
38
// FitName is the name of the plugin used in the plugin registry and configurations.
39
39
FitName = "NodeResourcesFit"
40
40
41
- // preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
41
+ // preFilterStateKey is the key in CycleState to NodeResourcesFit pre-computed data.
42
42
// Using the name of the plugin will likely help us avoid collisions with other plugins.
43
43
preFilterStateKey = "PreFilter" + FitName
44
44
)
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const (
39
39
// ResourceLimitsName is the name of the plugin used in the plugin registry and configurations.
40
40
ResourceLimitsName = "NodeResourceLimits"
41
41
42
- // postFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
42
+ // postFilterStateKey is the key in CycleState to NodeResourceLimits pre-computed data.
43
43
// Using the name of the plugin will likely help us avoid collisions with other plugins.
44
44
postFilterStateKey = "PostFilter" + ResourceLimitsName
45
45
)
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const (
34
34
// Name is the name of the plugin used in the plugin registry and configurations.
35
35
Name = "ServiceAffinity"
36
36
37
- // preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
37
+ // preFilterStateKey is the key in CycleState to ServiceAffinity pre-computed data.
38
38
// Using the name of the plugin will likely help us avoid collisions with other plugins.
39
39
preFilterStateKey = "PreFilter" + Name
40
40
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ var _ framework.ScorePlugin = &TaintToleration{}
40
40
const (
41
41
// Name is the name of the plugin used in the plugin registry and configurations.
42
42
Name = "TaintToleration"
43
- // postFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data for Scoring.
43
+ // postFilterStateKey is the key in CycleState to TaintToleration pre-computed data for Scoring.
44
44
postFilterStateKey = "PostFilter" + Name
45
45
// ErrReasonNotMatch is the Filter reason status when not matching.
46
46
ErrReasonNotMatch = "node(s) had taints that the pod didn't tolerate"
You can’t perform that action at this time.
0 commit comments