mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
Graduate Pod priority and preemption to GA
This commit is contained in:
parent
b8b689aae0
commit
01df1464e5
@ -121,6 +121,7 @@ const (
|
|||||||
// owner: @bsalamat
|
// owner: @bsalamat
|
||||||
// alpha: v1.8
|
// alpha: v1.8
|
||||||
// beta: v1.11
|
// beta: v1.11
|
||||||
|
// GA: v1.14
|
||||||
//
|
//
|
||||||
// Add priority to pods. Priority affects scheduling and preemption of pods.
|
// Add priority to pods. Priority affects scheduling and preemption of pods.
|
||||||
PodPriority utilfeature.Feature = "PodPriority"
|
PodPriority utilfeature.Feature = "PodPriority"
|
||||||
@ -432,7 +433,7 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS
|
|||||||
Sysctls: {Default: true, PreRelease: utilfeature.Beta},
|
Sysctls: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
DebugContainers: {Default: false, PreRelease: utilfeature.Alpha},
|
DebugContainers: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
PodShareProcessNamespace: {Default: true, PreRelease: utilfeature.Beta},
|
PodShareProcessNamespace: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
PodPriority: {Default: true, PreRelease: utilfeature.Beta},
|
PodPriority: {Default: true, PreRelease: utilfeature.GA},
|
||||||
TaintNodesByCondition: {Default: true, PreRelease: utilfeature.Beta},
|
TaintNodesByCondition: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
MountPropagation: {Default: true, PreRelease: utilfeature.GA, LockToDefault: true}, // remove in 1.14
|
MountPropagation: {Default: true, PreRelease: utilfeature.GA, LockToDefault: true}, // remove in 1.14
|
||||||
QOSReserved: {Default: false, PreRelease: utilfeature.Alpha},
|
QOSReserved: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
|
Loading…
Reference in New Issue
Block a user