Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for MatchLabelKeys (0.53 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    	return nil
    }
    
    // validateMatchLabelKeysAndMismatchLabelKeys checks if both matchLabelKeys and mismatchLabelKeys are valid.
    // - validate that all matchLabelKeys and mismatchLabelKeys are valid label names.
    // - validate that the user doens't specify the same key in both matchLabelKeys and labelSelector.
    // - validate that any matchLabelKeys are not duplicated with mismatchLabelKeys.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// The same key is forbidden to exist in both matchLabelKeys and labelSelector.
    	// Also, matchLabelKeys cannot be set when labelSelector isn't set.
    	// This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
    	//
    	// +listType=atomic
    	// +optional
    	MatchLabelKeys []string `json:"matchLabelKeys,omitempty" protobuf:"bytes,5,opt,name=matchLabelKeys"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// The same key is forbidden to exist in both matchLabelKeys and labelSelector.
    	// Also, matchLabelKeys cannot be set when labelSelector isn't set.
    	// This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
    	//
    	// +listType=atomic
    	// +optional
    	MatchLabelKeys []string
    	// MismatchLabelKeys is a set of pod label keys to select which pods will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"matchLabelKeys":     "MatchLabelKeys is a set of pod label keys to select the pods over which spreading will be calculated. The keys are used to lookup values from 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...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // The same key is forbidden to exist in both matchLabelKeys and labelSelector.
      // Also, matchLabelKeys cannot be set when labelSelector isn't set.
      // This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
      //
      // +listType=atomic
      // +optional
      repeated string matchLabelKeys = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    	out.TopologyKey = in.TopologyKey
    	out.NamespaceSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.NamespaceSelector))
    	out.MatchLabelKeys = *(*[]string)(unsafe.Pointer(&in.MatchLabelKeys))
    	out.MismatchLabelKeys = *(*[]string)(unsafe.Pointer(&in.MismatchLabelKeys))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                ],
                "description": "A label query over a set of resources, in this case pods. If it's null, this PodAffinityTerm matches with no Pods."
              },
              "matchLabelKeys": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // 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.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Forbid to set matchLabelKeys when labelSelector is not set in topologySpreadConstraints ([#116535](https://github.com/kubernetes/kubernetes/pull/116535), [@denkensk](https://github.com/denkensk))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - The `kube-scheduler` `selectorSpread` plugin has been removed, please use the `podTopologySpread` plugin instead. ([#117720](https://github.com/kubernetes/kubernetes/pull/117720), [@kerthcet](https://github.com/kerthcet))
    - The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`. ([#116065](https://github.com/kubernetes/kubernetes/pull/116065), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top