Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for labelSelectors (0.35 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - `LabelSelectors` specified in `topologySpreadConstraints` were validated to ensure that pods are scheduled as expected. Existing pods with invalid `LabelSelectors` could be updated, but new pods were required to specify valid `LabelSelectors`. ([#111802](https://github.com/kubernetes/kubernetes/pull/111802), [@maaoBit](https://github.com/maaoBit))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.26.md

      have a ready condition, regardless of whether the PodDisruptionBudget is currently
      healthy.'
       ([#113375](https://github.com/kubernetes/kubernetes/pull/113375), [@atiratree](https://github.com/atiratree))
    - '`metav1.LabelSelectors` specified in API objects are now validated to ensure
      they do not contain invalid label values that will error at time of use. Existing
      invalid objects can be updated, but new objects are required to contain valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    func validateMatchLabelKeysInTopologySpread(fldPath *field.Path, matchLabelKeys []string, labelSelector *metav1.LabelSelector) field.ErrorList {
    	if len(matchLabelKeys) == 0 {
    		return nil
    	}
    
    	var allErrs field.ErrorList
    	labelSelectorKeys := sets.Set[string]{}
    
    	if labelSelector != nil {
    		for key := range labelSelector.MatchLabels {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// with SignerName and LabelSelector.
    	Name *string
    
    	// Select all ClusterTrustBundles for this signer that match LabelSelector.
    	// Mutually-exclusive with Name.
    	SignerName *string
    
    	// Select all ClusterTrustBundles that match this LabelSelecotr.
    	// Mutually-exclusive with Name.
    	LabelSelector *metav1.LabelSelector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    func (m *LabelSelector) Reset()      { *m = LabelSelector{} }
    func (*LabelSelector) ProtoMessage() {}
    func (*LabelSelector) Descriptor() ([]byte, []int) {
    	return fileDescriptor_a8431b6e0aeeb761, []int{18}
    }
    func (m *LabelSelector) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *LabelSelector) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.20.md

    - Pods with invalid Affinity/AntiAffinity LabelSelectors will now fail scheduling when these plugins are enabled ([#93660](https://github.com/kubernetes/kubernetes/pull/93660), [@damemi](https://github.com/damemi)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              },
              "objectSelector": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    the incoming pod labels, those key-value labels are ANDed with labelSelector to select the group of existing pods over which spreading will be calculated for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. MatchLabelKeys cannot be set when LabelSelector isn't set. Keys that don't exist in the incoming pod labels will be ignored. A null or empty list means only match against labelSelector.\n\nThis is a beta field and requires the MatchLabelKeysInPodTopologySpread...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// everything".
    	// +optional
    	LabelSelector *metav1.LabelSelector `json:"labelSelector,omitempty" protobuf:"bytes,3,rep,name=labelSelector"`
    
    	// If true, don't block pod startup if the referenced ClusterTrustBundle(s)
    	// aren't available.  If using name, then the named ClusterTrustBundle is
    	// allowed not to exist.  If using signerName, then the combination of
    	// signerName and labelSelector is allowed to match zero
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector labelSelector = 3;
    
      // If true, don't block pod startup if the referenced ClusterTrustBundle(s)
      // aren't available.  If using name, then the named ClusterTrustBundle is
      // allowed not to exist.  If using signerName, then the combination of
      // signerName and labelSelector is allowed to match zero
      // ClusterTrustBundles.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top