From 1422b66c5f8b5ea949480185ebaaf68678fd9972 Mon Sep 17 00:00:00 2001 From: huweiwen Date: Wed, 28 Feb 2024 20:30:01 +0800 Subject: [PATCH] set Topology feature gate default to true This feature gate has already existed for 5 years. And should be safe to enable by default. --- pkg/features/features.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/features/features.go b/pkg/features/features.go index c3e84d4190..c68a4b9da6 100644 --- a/pkg/features/features.go +++ b/pkg/features/features.go @@ -57,7 +57,7 @@ func init() { // defaultKubernetesFeatureGates consists of all known feature keys specific to external-provisioner. // To add a new feature, define a key for it above and add it here. var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{ - Topology: {Default: false, PreRelease: featuregate.GA}, + Topology: {Default: true, PreRelease: featuregate.GA}, HonorPVReclaimPolicy: {Default: false, PreRelease: featuregate.Alpha}, CrossNamespaceVolumeDataSource: {Default: false, PreRelease: featuregate.Alpha}, VolumeAttributesClass: {Default: false, PreRelease: featuregate.Alpha},