Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for TopologySpreadConstraint (0.48 sec)

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

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.TopologySpreadConstraint)(nil), (*core.TopologySpreadConstraint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_TopologySpreadConstraint_To_core_TopologySpreadConstraint(a.(*v1.TopologySpreadConstraint), b.(*core.TopologySpreadConstraint), scope)
    	}); err != nil {
    		return err
    	}
    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. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	(*v1.Toleration)(nil),                    // 62: k8s.io.api.core.v1.Toleration
    	(*durationpb.Duration)(nil),              // 63: google.protobuf.Duration
    	(*v1.TopologySpreadConstraint)(nil),      // 64: k8s.io.api.core.v1.TopologySpreadConstraint
    	(*v1.VolumeMount)(nil),                   // 65: k8s.io.api.core.v1.VolumeMount
    	(*v1.Volume)(nil),                        // 66: k8s.io.api.core.v1.Volume
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    // on TopologyKey and WhenUnsatisfiable fields.
    func ValidateSpreadConstraintNotRepeat(fldPath *field.Path, constraint core.TopologySpreadConstraint, restingConstraints []core.TopologySpreadConstraint) *field.Error {
    	for _, restingConstraint := range restingConstraints {
    		if constraint.TopologyKey == restingConstraint.TopologyKey &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // A list of topology selector requirements by labels.
      // +optional
      repeated TopologySelectorLabelRequirement matchLabelExpressions = 1;
    }
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    message TopologySpreadConstraint {
      // MaxSkew describes the degree to which pods may be unevenly distributed.
      // When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
    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

    	NodeInclusionPolicyHonor NodeInclusionPolicy = "Honor"
    )
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    type TopologySpreadConstraint struct {
    	// MaxSkew describes the degree to which pods may be unevenly distributed.
    	// When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
    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/generated.proto

      // +optional
      // +listType=atomic
      repeated TopologySelectorLabelRequirement matchLabelExpressions = 1;
    }
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    message TopologySpreadConstraint {
      // MaxSkew describes the degree to which pods may be unevenly distributed.
      // When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
    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. staging/src/k8s.io/api/core/v1/types.go

    	NodeInclusionPolicyHonor NodeInclusionPolicy = "Honor"
    )
    
    // TopologySpreadConstraint specifies how to spread matching pods among the given topology.
    type TopologySpreadConstraint struct {
    	// MaxSkew describes the degree to which pods may be unevenly distributed.
    	// When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (TopologySelectorTerm) SwaggerDoc() map[string]string {
    	return map_TopologySelectorTerm
    }
    
    var map_TopologySpreadConstraint = map[string]string{
    	"":                   "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.TopologySpreadConstraint": {
            "description": "TopologySpreadConstraint specifies how to spread matching pods among the given topology.",
            "properties": {
              "labelSelector": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - The Kubernetes apiserver now emits a warning message for Pods with a null labelSelector in podAffinity or topologySpreadConstraints. The null labelSelector means "match none". Using it in podAffinity or topologySpreadConstraint could lead to unintended behavior. ([#117025](https://github.com/kubernetes/kubernetes/pull/117025), [@sanposhiho](https://github.com/sanposhiho)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top