Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for PreferredDuringSchedulingIgnoredDuringExecution (1.08 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.RequiredDuringSchedulingIgnoredDuringExecution = (*core.NodeSelector)(unsafe.Pointer(in.RequiredDuringSchedulingIgnoredDuringExecution))
    	out.PreferredDuringSchedulingIgnoredDuringExecution = *(*[]core.PreferredSchedulingTerm)(unsafe.Pointer(&in.PreferredDuringSchedulingIgnoredDuringExecution))
    	return nil
    }
    
    // Convert_v1_NodeAffinity_To_core_NodeAffinity is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	}
    	if podAntiAffinity.PreferredDuringSchedulingIgnoredDuringExecution != nil {
    		allErrs = append(allErrs, validateWeightedPodAffinityTerms(podAntiAffinity.PreferredDuringSchedulingIgnoredDuringExecution, allowInvalidLabelValueInSelector,
    			fldPath.Child("preferredDuringSchedulingIgnoredDuringExecution"))...)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// node(s) with the highest sum are the most preferred.
    	// +optional
    	// +listType=atomic
    	PreferredDuringSchedulingIgnoredDuringExecution []WeightedPodAffinityTerm `json:"preferredDuringSchedulingIgnoredDuringExecution,omitempty" protobuf:"bytes,2,rep,name=preferredDuringSchedulingIgnoredDuringExecution"`
    }
    
    // Pod anti affinity is a group of inter pod anti affinity scheduling rules.
    type PodAntiAffinity struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // "weight" to the sum if the node matches the corresponding matchExpressions; the
      // node(s) with the highest sum are the most preferred.
      // +optional
      repeated PreferredSchedulingTerm preferredDuringSchedulingIgnoredDuringExecution = 2;
    }
    
    // NodeCondition contains condition information for a node.
    message NodeCondition {
      // Type of node condition.
      optional string type = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
    	// node(s) with the highest sum are the most preferred.
    	// +optional
    	PreferredDuringSchedulingIgnoredDuringExecution []WeightedPodAffinityTerm
    }
    
    // PodAntiAffinity is a group of inter pod anti affinity scheduling rules.
    type PodAntiAffinity struct {
    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

    	"preferredDuringSchedulingIgnoredDuringExecution": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the...
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // node(s) with the highest sum are the most preferred.
      // +optional
      // +listType=atomic
      repeated PreferredSchedulingTerm preferredDuringSchedulingIgnoredDuringExecution = 2;
    }
    
    // NodeCondition contains condition information for a node.
    message NodeCondition {
      // Type of node condition.
      optional string type = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

          },
          "io.k8s.api.core.v1.NodeAffinity": {
            "description": "Node affinity is a group of node affinity scheduling rules.",
            "properties": {
              "preferredDuringSchedulingIgnoredDuringExecution": {
    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. CHANGELOG/CHANGELOG-1.17.md

    - Optimize inter-pod affinity preferredDuringSchedulingIgnoredDuringExecution type, up to 4x in some cases. ([#84264](https://github.com/kubernetes/kubernetes/pull/84264), [@ahg-g](https://github.com/ahg-g))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * Affinity in annotations alpha feature is no longer supported in 1.8. Anyone upgrading from 1.7 with AffinityInAnnotation feature enabled must ensure pods (specifically with pod anti-affinity PreferredDuringSchedulingIgnoredDuringExecution) with empty TopologyKey fields must be removed before upgrading to 1.8. ([#49976](https://github.com/kubernetes/kubernetes/pull/49976), [@aveshagarwal](https://github.com/aveshagarwal))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top