Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for TopologyKey (0.21 sec)

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

    	if len(podAffinityTerm.TopologyKey) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("topologyKey"), "can not be empty"))
    	}
    	return append(allErrs, unversionedvalidation.ValidateLabelName(podAffinityTerm.TopologyKey, fldPath.Child("topologyKey"))...)
    }
    
    // validatePodAffinityTerms tests that the specified podAffinityTerms fields have valid data
    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

    	// whose value of the label with key topologyKey matches that of any node on which any of the
    	// selected pods is running.
    	// Empty topologyKey is not allowed.
    	TopologyKey string `json:"topologyKey" protobuf:"bytes,3,opt,name=topologyKey"`
    	// A label query over the set of namespaces that the term applies to.
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // the labelSelector in the specified namespaces, where co-located is defined as running on a node
      // whose value of the label with key topologyKey matches that of any node on which any of the
      // selected pods is running.
      // Empty topologyKey is not allowed.
      optional string topologyKey = 3;
    
      // A label query over the set of namespaces that the term applies to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // the labelSelector in the specified namespaces, where co-located is defined as running on a node
      // whose value of the label with key topologyKey matches that of any node on which any of the
      // selected pods is running.
      // Empty topologyKey is not allowed.
      optional string topologyKey = 3;
    
      // A label query over the set of namespaces that the term applies to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// the labelSelector in the specified namespaces, where co-located is defined as running on a node
    	// whose value of the label with key topologyKey matches that of any node on which any of the
    	// selected pods is running.
    	// Empty topologyKey is not allowed.
    	TopologyKey string
    	// A label query over the set of namespaces that the term applies to.
    	// The term is applied to the union of the namespaces selected by this field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"topologyKey":       "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "x-kubernetes-list-type": "atomic"
              },
              "topologyKey": {
                "default": "",
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	out.LabelSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.LabelSelector))
    	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))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Kube-scheduler now retries scheduling Pods rejected by the PodTopologySpread plugin when related Pods are created, deleted, updated, or when a node matches the specified topologyKey. ([#122195](https://github.com/kubernetes/kubernetes/pull/122195), [@nayihz](https://github.com/nayihz))
    - Kubeadm now prints all the kubelets and nodes that need to be upgraded when running "upgrade plan".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

      don't match the node affinity/selector. This may lead to unschedulable pods if you previously had pods
      matching the spreading selector on those excluded nodes (not matching the node affinity/selector),
      especially when the `topologyKey` is not node-level. Revisit the node affinity and/or pod selector in the
      topology spread constraints to avoid this scenario. ([#107009](https://github.com/kubernetes/kubernetes/pull/107009), [@kerthcet](https://github.com/kerthcet))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top