mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 05:03:09 +00:00
commit
9269b5d430
@ -40,7 +40,7 @@ const (
|
|||||||
// Name is the name of the plugin used in the plugin registry and configurations.
|
// Name is the name of the plugin used in the plugin registry and configurations.
|
||||||
Name = "NodePorts"
|
Name = "NodePorts"
|
||||||
|
|
||||||
// preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
|
// preFilterStateKey is the key in CycleState to NodePorts pre-computed data.
|
||||||
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
||||||
preFilterStateKey = "PreFilter" + Name
|
preFilterStateKey = "PreFilter" + Name
|
||||||
)
|
)
|
||||||
|
@ -38,7 +38,7 @@ const (
|
|||||||
// FitName is the name of the plugin used in the plugin registry and configurations.
|
// FitName is the name of the plugin used in the plugin registry and configurations.
|
||||||
FitName = "NodeResourcesFit"
|
FitName = "NodeResourcesFit"
|
||||||
|
|
||||||
// preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
|
// preFilterStateKey is the key in CycleState to NodeResourcesFit pre-computed data.
|
||||||
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
||||||
preFilterStateKey = "PreFilter" + FitName
|
preFilterStateKey = "PreFilter" + FitName
|
||||||
)
|
)
|
||||||
|
@ -39,7 +39,7 @@ const (
|
|||||||
// ResourceLimitsName is the name of the plugin used in the plugin registry and configurations.
|
// ResourceLimitsName is the name of the plugin used in the plugin registry and configurations.
|
||||||
ResourceLimitsName = "NodeResourceLimits"
|
ResourceLimitsName = "NodeResourceLimits"
|
||||||
|
|
||||||
// postFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
|
// postFilterStateKey is the key in CycleState to NodeResourceLimits pre-computed data.
|
||||||
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
||||||
postFilterStateKey = "PostFilter" + ResourceLimitsName
|
postFilterStateKey = "PostFilter" + ResourceLimitsName
|
||||||
)
|
)
|
||||||
|
@ -34,7 +34,7 @@ const (
|
|||||||
// Name is the name of the plugin used in the plugin registry and configurations.
|
// Name is the name of the plugin used in the plugin registry and configurations.
|
||||||
Name = "ServiceAffinity"
|
Name = "ServiceAffinity"
|
||||||
|
|
||||||
// preFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data.
|
// preFilterStateKey is the key in CycleState to ServiceAffinity pre-computed data.
|
||||||
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
// Using the name of the plugin will likely help us avoid collisions with other plugins.
|
||||||
preFilterStateKey = "PreFilter" + Name
|
preFilterStateKey = "PreFilter" + Name
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@ var _ framework.ScorePlugin = &TaintToleration{}
|
|||||||
const (
|
const (
|
||||||
// Name is the name of the plugin used in the plugin registry and configurations.
|
// Name is the name of the plugin used in the plugin registry and configurations.
|
||||||
Name = "TaintToleration"
|
Name = "TaintToleration"
|
||||||
// postFilterStateKey is the key in CycleState to InterPodAffinity pre-computed data for Scoring.
|
// postFilterStateKey is the key in CycleState to TaintToleration pre-computed data for Scoring.
|
||||||
postFilterStateKey = "PostFilter" + Name
|
postFilterStateKey = "PostFilter" + Name
|
||||||
// ErrReasonNotMatch is the Filter reason status when not matching.
|
// ErrReasonNotMatch is the Filter reason status when not matching.
|
||||||
ErrReasonNotMatch = "node(s) had taints that the pod didn't tolerate"
|
ErrReasonNotMatch = "node(s) had taints that the pod didn't tolerate"
|
||||||
|
Loading…
Reference in New Issue
Block a user