Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for MatchLabelKeysInPodTopologySpread (0.57 sec)

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

    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    		EnableMatchLabelKeysInPodTopologySpread:      feature.DefaultFeatureGate.Enabled(features.MatchLabelKeysInPodTopologySpread),
    		EnablePodDisruptionConditions:                feature.DefaultFeatureGate.Enabled(features.PodDisruptionConditions),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/api/pod/util_test.go

    				},
    			},
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.MatchLabelKeysInPodTopologySpread, test.enabled)
    
    			dropDisabledFields(test.podSpec, nil, test.oldPodSpec, nil)
    			if diff := cmp.Diff(test.wantPodSpec, test.podSpec); diff != "" {
    				t.Errorf("unexpected pod spec (-want, +got):\n%s", diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // Keys that don't exist in the incoming pod labels will
      // be ignored. A null or empty list means only match against labelSelector.
      //
      // This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).
      // +listType=atomic
      // +optional
      repeated string matchLabelKeys = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// Keys that don't exist in the incoming pod labels will
    	// be ignored. A null or empty list means only match against labelSelector.
    	//
    	// This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).
    	// +listType=atomic
    	// +optional
    	MatchLabelKeys []string
    }
    
    // These are the built-in errors for PortStatus.
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (TopologySpreadConstraint) SwaggerDoc() map[string]string {
    	return map_TopologySpreadConstraint
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Keys that don't exist in the incoming pod labels will
      // be ignored. A null or empty list means only match against labelSelector.
      //
      // This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).
      // +listType=atomic
      // +optional
      repeated string matchLabelKeys = 8;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Keys that don't exist in the incoming pod labels will
    	// be ignored. A null or empty list means only match against labelSelector.
    	//
    	// This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default).
    	// +listType=atomic
    	// +optional
    	MatchLabelKeys []string `json:"matchLabelKeys,omitempty" protobuf:"bytes,8,opt,name=matchLabelKeys"`
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top