mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 13:37:30 +00:00
Merge pull request #62111 from k82cn/k8s_62109_1
Automatic merge from submit-queue (batch tested with PRs 67160, 67090, 67159, 66866, 62111). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Upgraded TaintNodesByCondition to beta. Signed-off-by: Da K. Ma <klaus1982.cn@gmail.com> **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: part of #62109 **Release note**: ```release-note Upgraded TaintNodesByCondition to beta. ```
This commit is contained in:
commit
876e77ed95
@ -130,7 +130,7 @@ const (
|
|||||||
EnableEquivalenceClassCache utilfeature.Feature = "EnableEquivalenceClassCache"
|
EnableEquivalenceClassCache utilfeature.Feature = "EnableEquivalenceClassCache"
|
||||||
|
|
||||||
// owner: @k82cn
|
// owner: @k82cn
|
||||||
// alpha: v1.8
|
// beta: v1.12
|
||||||
//
|
//
|
||||||
// Taint nodes based on their condition status for 'NetworkUnavailable',
|
// Taint nodes based on their condition status for 'NetworkUnavailable',
|
||||||
// 'MemoryPressure', 'OutOfDisk' and 'DiskPressure'.
|
// 'MemoryPressure', 'OutOfDisk' and 'DiskPressure'.
|
||||||
@ -370,7 +370,7 @@ var defaultKubernetesFeatureGates = map[utilfeature.Feature]utilfeature.FeatureS
|
|||||||
PodShareProcessNamespace: {Default: true, PreRelease: utilfeature.Beta},
|
PodShareProcessNamespace: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
PodPriority: {Default: true, PreRelease: utilfeature.Beta},
|
PodPriority: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
EnableEquivalenceClassCache: {Default: false, PreRelease: utilfeature.Alpha},
|
EnableEquivalenceClassCache: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
TaintNodesByCondition: {Default: false, PreRelease: utilfeature.Alpha},
|
TaintNodesByCondition: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
MountPropagation: {Default: true, PreRelease: utilfeature.Beta},
|
MountPropagation: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
QOSReserved: {Default: false, PreRelease: utilfeature.Alpha},
|
QOSReserved: {Default: false, PreRelease: utilfeature.Alpha},
|
||||||
ExpandPersistentVolumes: {Default: true, PreRelease: utilfeature.Beta},
|
ExpandPersistentVolumes: {Default: true, PreRelease: utilfeature.Beta},
|
||||||
|
Loading…
Reference in New Issue
Block a user