Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for PreemptionPolicy (0.47 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/scheduling.k8s.io.v1.PriorityClass.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    preemptionPolicy: preemptionPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 964 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/scheduling.k8s.io.v1alpha1.PriorityClass.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/scheduling.k8s.io.v1beta1.PriorityClass.yaml

        blockOwnerDeletion: true
        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    preemptionPolicy: preemptionPolicyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 969 bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    func (pl *DefaultPreemption) PodEligibleToPreemptOthers(pod *v1.Pod, nominatedNodeStatus *framework.Status) (bool, string) {
    	if pod.Spec.PreemptionPolicy != nil && *pod.Spec.PreemptionPolicy == v1.PreemptNever {
    		return false, "not eligible due to preemptionPolicy=Never."
    	}
    
    	nodeInfos := pl.fh.SnapshotSharedLister().NodeInfos()
    	nomNodeName := pod.Status.NominatedNodeName
    	if len(nomNodeName) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. 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",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/wrappers.go

    	return p
    }
    
    // PreemptionPolicy sets the give preemption policy to the inner pod.
    func (p *PodWrapper) PreemptionPolicy(policy v1.PreemptionPolicy) *PodWrapper {
    	p.Spec.PreemptionPolicy = &policy
    	return p
    }
    
    // Overhead sets the give ResourceList to the inner pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			expected:            true,
    		},
    		{
    			name:                "Pod with 'PreemptNever' preemption policy",
    			pod:                 st.MakePod().Name("p_with_preempt_never_policy").UID("p").Priority(highPriority).PreemptionPolicy(v1.PreemptNever).Obj(),
    			pods:                []*v1.Pod{},
    			nodes:               []string{},
    			nominatedNodeStatus: nil,
    			expected:            false,
    		},
    		{
    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. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  9. 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.DaemonSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top