Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for whenUnsatisfiable (0.7 sec)

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

    		}
    		if err := ValidateWhenUnsatisfiable(subFldPath.Child("whenUnsatisfiable"), constraint.WhenUnsatisfiable); err != nil {
    			allErrs = append(allErrs, err)
    		}
    		// tuple {topologyKey, whenUnsatisfiable} denotes one kind of spread constraint
    		if err := ValidateSpreadConstraintNotRepeat(subFldPath.Child("{topologyKey, whenUnsatisfiable}"), constraint, constraints[i+1:]); err != nil {
    			allErrs = append(allErrs, err)
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // +-------+-------+-------+
      // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
      // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
      // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
      // won't make it *more* imbalanced.
      // It's a required field.
      optional string whenUnsatisfiable = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// +-------+-------+-------+
    	// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
    	// to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
    	// MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
    	// won't make it *more* imbalanced.
    	// It's a required field.
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +-------+-------+-------+
      // If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
      // to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
      // MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
      // won't make it *more* imbalanced.
      // It's a required field.
      optional string whenUnsatisfiable = 3;
    
    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

    	// +-------+-------+-------+
    	// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled
    	// to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies
    	// MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler
    	// won't make it *more* imbalanced.
    	// It's a required field.
    	WhenUnsatisfiable UnsatisfiableConstraintAction
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "whenUnsatisfiable": {
                "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)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"whenUnsatisfiable":  "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n  but giving...
    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.MaxSkew = in.MaxSkew
    	out.TopologyKey = in.TopologyKey
    	out.WhenUnsatisfiable = core.UnsatisfiableConstraintAction(in.WhenUnsatisfiable)
    	out.LabelSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.LabelSelector))
    	out.MinDomains = (*int32)(unsafe.Pointer(in.MinDomains))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top