Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for PreemptLowerPriority (0.87 sec)

  1. staging/src/k8s.io/api/scheduling/v1/types.go

    	// +optional
    	Description string `json:"description,omitempty" protobuf:"bytes,4,opt,name=description"`
    
    	// preemptionPolicy is the Policy for preempting pods with lower priority.
    	// One of Never, PreemptLowerPriority.
    	// Defaults to PreemptLowerPriority if unset.
    	// +optional
    	PreemptionPolicy *apiv1.PreemptionPolicy `json:"preemptionPolicy,omitempty" protobuf:"bytes,5,opt,name=preemptionPolicy"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	}{
    		{
    			name: "basic preemption logic",
    			pod:  st.MakePod().Name("p").UID("p").Namespace(v1.NamespaceDefault).Priority(highPriority).Req(veryLargeRes).PreemptionPolicy(v1.PreemptLowerPriority).Obj(),
    			pods: []*v1.Pod{
    				st.MakePod().Name("p1.1").UID("p1.1").Node("node1").Priority(lowPriority).Req(smallRes).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    }
    
    // PreemptionPolicy describes a policy for if/when to preempt a pod.
    type PreemptionPolicy string
    
    const (
    	// PreemptLowerPriority means that pod can preempt other pods with lower priority.
    	PreemptLowerPriority PreemptionPolicy = "PreemptLowerPriority"
    	// PreemptNever means that pod never preempts other pods with lower priority.
    	PreemptNever PreemptionPolicy = "Never"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // PreemptionPolicy describes a policy for if/when to preempt a pod.
    // +enum
    type PreemptionPolicy string
    
    const (
    	// PreemptLowerPriority means that pod can preempt other pods with lower priority.
    	PreemptLowerPriority PreemptionPolicy = "PreemptLowerPriority"
    	// PreemptNever means that pod never preempts other pods with lower priority.
    	PreemptNever PreemptionPolicy = "Never"
    )
    
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"preemptionPolicy":              "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.\n\nPossible enum values:\n - `\"Never\"` means that pod never preempts other pods with lower priority.\n - `\"PreemptLowerPriority\"` means that pod can preempt other pods with lower priority.",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	allErrors := field.ErrorList{}
    	switch *preemptionPolicy {
    	case core.PreemptLowerPriority, core.PreemptNever:
    	case "":
    		allErrors = append(allErrors, field.Required(fldPath, ""))
    	default:
    		validValues := []core.PreemptionPolicy{core.PreemptLowerPriority, core.PreemptNever}
    		allErrors = append(allErrors, field.NotSupported(fldPath, preemptionPolicy, validValues))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Optional: Defaults to true.
      // +optional
      optional bool enableServiceLinks = 30;
    
      // PreemptionPolicy is the Policy for preempting pods with lower priority.
      // One of Never, PreemptLowerPriority.
      // Defaults to PreemptLowerPriority if unset.
      // +optional
      optional string preemptionPolicy = 31;
    
      // Overhead represents the resource overhead associated with running a pod for a given RuntimeClass.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "object"
              },
              "preemptionPolicy": {
                "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
                "type": "string"
              },
              "priority": {
    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. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "object"
              },
              "preemptionPolicy": {
                "description": "PreemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
                "type": "string"
              },
              "priority": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top