Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for DoNotSchedule (0.7 sec)

  1. pkg/apis/core/types.go

    // unsatisfiable constraint.
    type UnsatisfiableConstraintAction string
    
    const (
    	// DoNotSchedule instructs the scheduler not to schedule the pod
    	// when constraints are not satisfied.
    	DoNotSchedule UnsatisfiableConstraintAction = "DoNotSchedule"
    	// ScheduleAnyway instructs the scheduler to schedule the pod
    	// even if constraints are not satisfied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // +enum
    type UnsatisfiableConstraintAction string
    
    const (
    	// DoNotSchedule instructs the scheduler not to schedule the pod
    	// when constraints are not satisfied.
    	DoNotSchedule UnsatisfiableConstraintAction = "DoNotSchedule"
    	// ScheduleAnyway instructs the scheduler to schedule the pod
    	// even if constraints are not satisfied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

    message TopologySpreadConstraint {
      // MaxSkew describes the degree to which pods may be unevenly distributed.
      // When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
      // between the number of matching pods in the target topology and the global minimum.
      // The global minimum is the minimum number of matching pods in an eligible domain
    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. staging/src/k8s.io/api/core/v1/generated.proto

    message TopologySpreadConstraint {
      // MaxSkew describes the degree to which pods may be unevenly distributed.
      // When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference
      // between the number of matching pods in the target topology and the global minimum.
      // The global minimum is the minimum number of matching pods in an eligible domain
    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/validation/validation.go

    	}
    	// When MinDomains is non-nil, whenUnsatisfiable must be DoNotSchedule.
    	if action != core.DoNotSchedule {
    		allErrs = append(allErrs, field.Invalid(fldPath, minDomains, fmt.Sprintf("can only use minDomains if whenUnsatisfiable=%s, not %s", core.DoNotSchedule, action)))
    	}
    	return allErrs
    }
    
    // ValidateTopologyKey tests that the argument is a valid TopologyKey.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                   "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)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "maxSkew": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top