Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 138 for nodeAffinityPolicy (0.29 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

            values:
            - valuesValue
          matchLabels:
            matchLabelsKey: matchLabelsValue
        matchLabelKeys:
        - matchLabelKeysValue
        maxSkew: 1
        minDomains: 5
        nodeAffinityPolicy: nodeAffinityPolicyValue
        nodeTaintsPolicy: nodeTaintsPolicyValue
        topologyKey: topologyKeyValue
        whenUnsatisfiable: whenUnsatisfiableValue
      volumes:
      - awsElasticBlockStore:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	if in.MinDomains != nil {
    		in, out := &in.MinDomains, &out.MinDomains
    		*out = new(int32)
    		**out = **in
    	}
    	if in.NodeAffinityPolicy != nil {
    		in, out := &in.NodeAffinityPolicy, &out.NodeAffinityPolicy
    		*out = new(NodeInclusionPolicy)
    		**out = **in
    	}
    	if in.NodeTaintsPolicy != nil {
    		in, out := &in.NodeTaintsPolicy, &out.NodeTaintsPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	if in.MinDomains != nil {
    		in, out := &in.MinDomains, &out.MinDomains
    		*out = new(int32)
    		**out = **in
    	}
    	if in.NodeAffinityPolicy != nil {
    		in, out := &in.NodeAffinityPolicy, &out.NodeAffinityPolicy
    		*out = new(NodeInclusionPolicy)
    		**out = **in
    	}
    	if in.NodeTaintsPolicy != nil {
    		in, out := &in.NodeTaintsPolicy, &out.NodeTaintsPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/apis/core/validation/validation_test.go

    		},
    	}, {
    		name: "supported policy name set on NodeAffinityPolicy and NodeTaintsPolicy",
    		constraints: []core.TopologySpreadConstraint{{
    			MaxSkew:            1,
    			TopologyKey:        "k8s.io/zone",
    			WhenUnsatisfiable:  core.DoNotSchedule,
    			NodeAffinityPolicy: &honor,
    			NodeTaintsPolicy:   &ignore,
    		}},
    		wantFieldErrors: []*field.Error{},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. 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)
Back to top