From 808be2993eb0e2392a2565a1116f63f5dae6dd20 Mon Sep 17 00:00:00 2001 From: Roman Bednar Date: Mon, 25 Sep 2023 11:00:13 +0200 Subject: [PATCH] remove RetroactiveDefaultStorageClass feature gate --- config/v1/feature_gates.go | 10 ---------- config/v1/types_feature.go | 5 +---- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/config/v1/feature_gates.go b/config/v1/feature_gates.go index 4f40048b88e..e58f9254e38 100644 --- a/config/v1/feature_gates.go +++ b/config/v1/feature_gates.go @@ -53,16 +53,6 @@ var ( OwningProduct: ocpSpecific, } - FeatureGateRetroactiveDefaultStorageClass = FeatureGateName("RetroactiveDefaultStorageClass") - retroactiveDefaultStorageClass = FeatureGateDescription{ - FeatureGateAttributes: FeatureGateAttributes{ - Name: FeatureGateRetroactiveDefaultStorageClass, - }, - OwningJiraComponent: "storage", - ResponsiblePerson: "RomanBednar", - OwningProduct: kubernetes, - } - FeatureGateExternalCloudProvider = FeatureGateName("ExternalCloudProvider") externalCloudProvider = FeatureGateDescription{ FeatureGateAttributes: FeatureGateAttributes{ diff --git a/config/v1/types_feature.go b/config/v1/types_feature.go index 4169b5bc40b..111a8ad9fbb 100644 --- a/config/v1/types_feature.go +++ b/config/v1/types_feature.go @@ -168,7 +168,6 @@ var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{ with(nodeSwap). with(machineAPIProviderOpenStack). with(insightsConfigAPI). - with(retroactiveDefaultStorageClass). with(dynamicResourceAllocation). with(gateGatewayAPI). with(maxUnavailableStatefulSet). @@ -200,9 +199,7 @@ var defaultFeatures = &FeatureGateEnabledDisabled{ privateHostedZoneAWS, buildCSIVolumes, }, - Disabled: []FeatureGateDescription{ - retroactiveDefaultStorageClass, - }, + Disabled: []FeatureGateDescription{}, } type featureSetBuilder struct {