From 8a9a294c9fc69b6f1cf1b8c5ebcd1a512af24559 Mon Sep 17 00:00:00 2001 From: Mengjiao Liu Date: Wed, 16 Nov 2022 14:15:27 +0800 Subject: [PATCH] Remove ExpandInUsePersistentVolumes feature gate --- pkg/features/kube_features.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index a3c5156d291..e2003620b27 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -315,12 +315,6 @@ const ( // Lock to default and remove after v1.22 based on user feedback that should be reflected in KEP #1972 update ExecProbeTimeout featuregate.Feature = "ExecProbeTimeout" - // owner: @mlmhl @gnufied - // beta: v1.15 - // GA: 1.24 - // Ability to expand persistent volumes' file system without unmounting volumes. - ExpandInUsePersistentVolumes featuregate.Feature = "ExpandInUsePersistentVolumes" - // owner: @gnufied // beta: v1.11 // GA: 1.24 @@ -988,8 +982,6 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS ExecProbeTimeout: {Default: true, PreRelease: featuregate.GA}, // lock to default and remove after v1.22 based on KEP #1972 update - ExpandInUsePersistentVolumes: {Default: true, PreRelease: featuregate.GA}, // remove in 1.26 - ExpandPersistentVolumes: {Default: true, PreRelease: featuregate.GA}, // remove in 1.26 ExpandedDNSConfig: {Default: true, PreRelease: featuregate.Beta},