Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for PodPriority (0.1 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	pods[0].Annotations = map[string]string{
    		kubelettypes.ConfigSourceAnnotationKey: kubelettypes.FileSource,
    	}
    	// Mark the pod as critical
    	podPriority := scheduling.SystemCriticalPriority
    	pods[0].Spec.Priority = &podPriority
    	pods[0].Namespace = kubeapi.NamespaceSystem
    
    	podToEvict := pods[0]
    	activePodsFunc := func() []*v1.Pod {
    		return pods
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    	ds.Namespace = api.NamespaceSystem
    	if ds.Spec.Template.ObjectMeta.Annotations == nil {
    		ds.Spec.Template.ObjectMeta.Annotations = make(map[string]string)
    	}
    	podPriority := scheduling.SystemCriticalPriority
    	ds.Spec.Template.Spec.Priority = &podPriority
    }
    
    func TestNodeShouldRunDaemonPod(t *testing.T) {
    	shouldRun := true
    	shouldContinueRunning := true
    	cases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.12.md

    - The `system-node-critical` and `system-cluster-critical` priority classes are now limited to the `kube-system` namespace by the `PodPriority` admission plugin (matching changes in 1.11.1+). ([#65593](https://github.com/kubernetes/ku...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.16.md

      - The `Cinder` and `ScaleIO` volume providers have been deprecated and will be removed in a future release. ([#80099](https://github.com/kubernetes/kubernetes/pull/80099), [@dims](https://github.com/dims))
      - The GA `PodPriority` feature gate is now on by default and cannot be disabled. The feature gate will be removed in v1.18. ([#79262](https://github.com/kubernetes/kubernetes/pull/79262), [@draveness](https://github.com/draveness))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.18.md

    - The following features are unconditionally enabled and the corresponding `--feature-gates` flags have been removed: `PodPriority`, `TaintNodesByCondition`, `ResourceQuotaScopeSelectors` and `ScheduleDaemonSetPods` ([#86210](https://github.com/kubernetes/kubernetes/pull/86210), [@draveness](https://github.com/draveness)) [SIG Apps and Scheduling]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top