Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for nodeAffinityPolicy (0.39 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
    	// +optional
    	NodeAffinityPolicy *NodeInclusionPolicy `json:"nodeAffinityPolicy,omitempty" protobuf:"bytes,6,opt,name=nodeAffinityPolicy"`
    	// NodeTaintsPolicy indicates how we will treat node taints when calculating
    	// pod topology spread skew. Options are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.LabelSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.LabelSelector))
    	out.MinDomains = (*int32)(unsafe.Pointer(in.MinDomains))
    	out.NodeAffinityPolicy = (*core.NodeInclusionPolicy)(unsafe.Pointer(in.NodeAffinityPolicy))
    	out.NodeTaintsPolicy = (*core.NodeInclusionPolicy)(unsafe.Pointer(in.NodeTaintsPolicy))
    	out.MatchLabelKeys = *(*[]string)(unsafe.Pointer(&in.MatchLabelKeys))
    	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)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // of pods into each bucket.
      // We define a domain as a particular instance of a topology.
      // Also, we define an eligible domain as a domain whose nodes meet the requirements of
      // nodeAffinityPolicy and nodeTaintsPolicy.
      // e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology.
      // And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology.
    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. pkg/apis/core/types.go

    	// of pods into each bucket.
    	// We define a domain as a particular instance of a topology.
    	// Also, we define an eligible domain as a domain whose nodes meet the requirements of
    	// nodeAffinityPolicy and nodeTaintsPolicy.
    	// e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology.
    	// And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology.
    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/api/core/v1/types_swagger_doc_generated.go

    	"nodeAffinityPolicy": "NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector when calculating pod topology spread skew. Options are: - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. - Ignore: nodeAffinity/nodeSelector...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // of pods into each bucket.
      // We define a domain as a particular instance of a topology.
      // Also, we define an eligible domain as a domain whose nodes meet the requirements of
      // nodeAffinityPolicy and nodeTaintsPolicy.
      // e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology.
      // And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "nodeAffinityPolicy": {
    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/validation/validation.go

    		}
    		allErrs = append(allErrs, validateMinDomains(subFldPath.Child("minDomains"), constraint.MinDomains, constraint.WhenUnsatisfiable)...)
    		if err := validateNodeInclusionPolicy(subFldPath.Child("nodeAffinityPolicy"), constraint.NodeAffinityPolicy); err != nil {
    			allErrs = append(allErrs, err)
    		}
    		if err := validateNodeInclusionPolicy(subFldPath.Child("nodeTaintsPolicy"), constraint.NodeTaintsPolicy); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top