mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-04 02:37:36 +00:00
feat: add feature gate
Signed-off-by: Jian Zeng <anonymousknight96@gmail.com>
This commit is contained in:
@@ -466,6 +466,13 @@ const (
|
|||||||
// Set pod completion index as a pod label for Indexed Jobs.
|
// Set pod completion index as a pod label for Indexed Jobs.
|
||||||
PodIndexLabel featuregate.Feature = "PodIndexLabel"
|
PodIndexLabel featuregate.Feature = "PodIndexLabel"
|
||||||
|
|
||||||
|
// owner: @knight42
|
||||||
|
// kep: https://kep.k8s.io/3288
|
||||||
|
// alpha: v1.32
|
||||||
|
//
|
||||||
|
// Enables only stdout or stderr of the container to be retrievd.
|
||||||
|
PodLogsQuerySplitStreams featuregate.Feature = "PodLogsQuerySplitStreams"
|
||||||
|
|
||||||
// owner: @ddebroy, @kannon92
|
// owner: @ddebroy, @kannon92
|
||||||
//
|
//
|
||||||
// Enables reporting of PodReadyToStartContainersCondition condition in pod status after pod
|
// Enables reporting of PodReadyToStartContainersCondition condition in pod status after pod
|
||||||
|
@@ -700,6 +700,10 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate
|
|||||||
{Version: version.MustParse("1.32"), Default: true, LockToDefault: true, PreRelease: featuregate.GA},
|
{Version: version.MustParse("1.32"), Default: true, LockToDefault: true, PreRelease: featuregate.GA},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
PodLogsQuerySplitStreams: {
|
||||||
|
{Version: version.MustParse("1.32"), Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
},
|
||||||
|
|
||||||
StatefulSetAutoDeletePVC: {
|
StatefulSetAutoDeletePVC: {
|
||||||
{Version: version.MustParse("1.23"), Default: false, PreRelease: featuregate.Alpha},
|
{Version: version.MustParse("1.23"), Default: false, PreRelease: featuregate.Alpha},
|
||||||
{Version: version.MustParse("1.27"), Default: true, PreRelease: featuregate.Beta},
|
{Version: version.MustParse("1.27"), Default: true, PreRelease: featuregate.Beta},
|
||||||
|
@@ -912,6 +912,12 @@
|
|||||||
lockToDefault: false
|
lockToDefault: false
|
||||||
preRelease: Alpha
|
preRelease: Alpha
|
||||||
version: "1.32"
|
version: "1.32"
|
||||||
|
- name: PodLogsQuerySplitStreams
|
||||||
|
versionedSpecs:
|
||||||
|
- default: false
|
||||||
|
lockToDefault: false
|
||||||
|
preRelease: Alpha
|
||||||
|
version: "1.32"
|
||||||
- name: PodReadyToStartContainersCondition
|
- name: PodReadyToStartContainersCondition
|
||||||
versionedSpecs:
|
versionedSpecs:
|
||||||
- default: false
|
- default: false
|
||||||
|
Reference in New Issue
Block a user