From adcc1b258066cb916d78395a86832fa401375142 Mon Sep 17 00:00:00 2001 From: Sai Ramesh Vanka Date: Wed, 24 May 2023 21:38:27 +0530 Subject: [PATCH] Add evented pleg as a tech preview feature in OCP Signed-off-by: Sai Ramesh Vanka --- 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 8d48cd8688b..7b2832e4646 100644 --- a/config/v1/feature_gates.go +++ b/config/v1/feature_gates.go @@ -202,4 +202,14 @@ var ( ResponsiblePerson: "miciah", OwningProduct: ocpSpecific, } + + FeatureGateEventedPLEG = FeatureGateName("EventedPLEG") + eventedPleg = FeatureGateDescription{ + FeatureGateAttributes: FeatureGateAttributes{ + Name: FeatureGateEventedPLEG, + }, + OwningJiraComponent: "node", + ResponsiblePerson: "sairameshv", + OwningProduct: kubernetes, + } ) diff --git a/config/v1/types_feature.go b/config/v1/types_feature.go index 488ed3e12fc..92eeb7a8138 100644 --- a/config/v1/types_feature.go +++ b/config/v1/types_feature.go @@ -180,6 +180,7 @@ var FeatureSets = map[FeatureSet]*FeatureGateEnabledDisabled{ with(gateGatewayAPI). with(maxUnavailableStatefulSet). with(privateHostedZoneAWS). + with(eventedPleg). toFeatures(defaultFeatures), LatencySensitive: newDefaultFeatures(). toFeatures(defaultFeatures),