Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MatchLabelKeysInPodTopologySpread (0.58 sec)

  1. pkg/features/kube_features.go

    	// owner: @denkensk
    	// kep: https://kep.k8s.io/3243
    	// alpha: v1.25
    	// beta: v1.27
    	//
    	// Enable MatchLabelKeys in PodTopologySpread.
    	MatchLabelKeysInPodTopologySpread featuregate.Feature = "MatchLabelKeysInPodTopologySpread"
    
    	// owner: @krmayankk
    	// alpha: v1.24
    	//
    	// Enables maxUnavailable for StatefulSet
    	MaxUnavailableStatefulSet featuregate.Feature = "MaxUnavailableStatefulSet"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/api/pod/util.go

    func dropDisabledMatchLabelKeysFieldInTopologySpread(podSpec, oldPodSpec *api.PodSpec) {
    	if !utilfeature.DefaultFeatureGate.Enabled(features.MatchLabelKeysInPodTopologySpread) && !matchLabelKeysInTopologySpreadInUse(oldPodSpec) {
    		for i := range podSpec.TopologySpreadConstraints {
    			podSpec.TopologySpreadConstraints[i].MatchLabelKeys = nil
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top