Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for PreemptLowerPriority (0.39 sec)

  1. common-protos/k8s.io/api/scheduling/v1beta1/generated.proto

      // when this priority class should be used.
      // +optional
      optional string description = 4;
    
      // preemptionPolicy is the Policy for preempting pods with lower priority.
      // One of Never, PreemptLowerPriority.
      // Defaults to PreemptLowerPriority if unset.
      // +optional
      optional string preemptionPolicy = 5;
    }
    
    // PriorityClassList is a collection of priority classes.
    message PriorityClassList {
      // Standard list metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/v1beta1/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: Sun Nov 13 13:16:35 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/priority/admission.go

    	if err != nil {
    		return "", 0, nil, err
    	}
    	if dpc != nil {
    		return dpc.Name, dpc.Value, dpc.PreemptionPolicy, nil
    	}
    	preemptLowerPriority := apiv1.PreemptLowerPriority
    	return "", int32(scheduling.DefaultPriorityWhenNoDefaultClassExists), &preemptLowerPriority, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

                    ]
                }
            ],
            "dnsPolicy": "ClusterFirst",
            "enableServiceLinks": true,
            "nodeName": "gke-pf-default-pool-ad46e28b-kdh9",
            "preemptionPolicy": "PreemptLowerPriority",
            "priority": 0,
            "restartPolicy": "Always",
            "schedulerName": "default-scheduler",
            "securityContext": {},
            "serviceAccount": "default",
            "serviceAccountName": "default",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  5. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          name: kube-api-access-s8rz5
          readOnly: true
      dnsPolicy: Default
      enableServiceLinks: true
      nodeName: mynode
      nodeSelector:
        kubernetes.io/os: linux
      preemptionPolicy: PreemptLowerPriority
      priority: 2000000000
      priorityClassName: system-cluster-critical
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext:
        fsGroup: 65534
        seccompProfile:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  6. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          name: kube-api-access-s8rz5
          readOnly: true
      dnsPolicy: Default
      enableServiceLinks: true
      nodeName: mynode
      nodeSelector:
        kubernetes.io/os: linux
      preemptionPolicy: PreemptLowerPriority
      priority: 2000000000
      priorityClassName: system-cluster-critical
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext:
        fsGroup: 65534
        seccompProfile:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  7. 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)
  8. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

              },
              "preemptionPolicy": {
                "description": "preemptionPolicy is the Policy for preempting pods with lower priority. One of Never, PreemptLowerPriority. Defaults to PreemptLowerPriority if unset.",
                "type": "string"
              },
              "value": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top