mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-10 12:32:03 +00:00
add PersistentVolumeLastPhaseTransitionTime feature gate
This commit is contained in:
parent
a31fee98f0
commit
5310dd7ff5
@ -627,6 +627,13 @@ const (
|
|||||||
// Enables PDBUnhealthyPodEvictionPolicy for PodDisruptionBudgets
|
// Enables PDBUnhealthyPodEvictionPolicy for PodDisruptionBudgets
|
||||||
PDBUnhealthyPodEvictionPolicy featuregate.Feature = "PDBUnhealthyPodEvictionPolicy"
|
PDBUnhealthyPodEvictionPolicy featuregate.Feature = "PDBUnhealthyPodEvictionPolicy"
|
||||||
|
|
||||||
|
// owner: @RomanBednar
|
||||||
|
// kep: https://kep.k8s.io/3762
|
||||||
|
// alpha: v1.28
|
||||||
|
//
|
||||||
|
// Adds a new field to persistent volumes which holds a timestamp of when the volume last transitioned its phase.
|
||||||
|
PersistentVolumeLastPhaseTransitionTime featuregate.Feature = "PersistentVolumeLastPhaseTransitionTime"
|
||||||
|
|
||||||
// owner: @haircommander
|
// owner: @haircommander
|
||||||
// kep: https://kep.k8s.io/2364
|
// kep: https://kep.k8s.io/2364
|
||||||
// alpha: v1.23
|
// alpha: v1.23
|
||||||
@ -1105,6 +1112,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS
|
|||||||
|
|
||||||
PDBUnhealthyPodEvictionPolicy: {Default: true, PreRelease: featuregate.Beta},
|
PDBUnhealthyPodEvictionPolicy: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
|
||||||
|
PersistentVolumeLastPhaseTransitionTime: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
PodAndContainerStatsFromCRI: {Default: false, PreRelease: featuregate.Alpha},
|
PodAndContainerStatsFromCRI: {Default: false, PreRelease: featuregate.Alpha},
|
||||||
|
|
||||||
PodDeletionCost: {Default: true, PreRelease: featuregate.Beta},
|
PodDeletionCost: {Default: true, PreRelease: featuregate.Beta},
|
||||||
|
Loading…
Reference in New Issue
Block a user