Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enableNodeInclusionPolicyInPodTopologySpread (0.61 sec)

  1. pkg/scheduler/framework/plugins/feature/feature.go

    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    	EnableVolumeCapacityPriority                 bool
    	EnableNodeInclusionPolicyInPodTopologySpread bool
    	EnableMatchLabelKeysInPodTopologySpread      bool
    	EnablePodDisruptionConditions                bool
    	EnableInPlacePodVerticalScaling              bool
    	EnableSidecarContainers                      bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    				NodeTaintsPolicy:   v1.NodeInclusionPolicyIgnore, // If NodeTaintsPolicy is nil, we treat NodeTaintsPolicy as "Ignore".
    			}
    			if pl.enableNodeInclusionPolicyInPodTopologySpread {
    				if c.NodeAffinityPolicy != nil {
    					tsc.NodeAffinityPolicy = *c.NodeAffinityPolicy
    				}
    				if c.NodeTaintsPolicy != nil {
    					tsc.NodeTaintsPolicy = *c.NodeTaintsPolicy
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/registry.go

    		EnableVolumeCapacityPriority:                 feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    		EnableMatchLabelKeysInPodTopologySpread:      feature.DefaultFeatureGate.Enabled(features.MatchLabelKeysInPodTopologySpread),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top