From 4493ddfb8a243980704a144d5acc7319772a3cc5 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 10 Nov 2023 09:20:12 -0500 Subject: [PATCH] add feature gate for MCO boot images updates --- config/v1/feature_gates.go | 10 ++++++++++ config/v1/types_feature.go | 1 + 2 files changed, 11 insertions(+) diff --git a/config/v1/feature_gates.go b/config/v1/feature_gates.go index 5e165394ad5..51e826f7e02 100644 --- a/config/v1/feature_gates.go +++ b/config/v1/feature_gates.go @@ -371,4 +371,14 @@ var ( ResponsiblePerson: "titzhak", OwningProduct: ocpSpecific, } + + FeatureGateManagedBootImages = FeatureGateName("ManagedBootImages") + managedBootImages = FeatureGateDescription{ + FeatureGateAttributes: FeatureGateAttributes{ + Name: FeatureGateManagedBootImages, + }, + OwningJiraComponent: "MachineConfigOperator", + ResponsiblePerson: "djoshy", + OwningProduct: ocpSpecific, + } ) diff --git a/config/v1/types_feature.go b/config/v1/types_feature.go index f4228d2f7b7..a2f0623a0bd 100644 --- a/config/v1/types_feature.go +++ b/config/v1/types_feature.go @@ -188,6 +188,7 @@ var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{ without(clusterAPIInstall). with(sdnLiveMigration). with(mixedCPUsAllocation). + with(managedBootImages). toFeatures(defaultFeatures), LatencySensitive: newDefaultFeatures(). toFeatures(defaultFeatures),