From 94136ee8480c5654e1c87aba908b5e3554d5b72d Mon Sep 17 00:00:00 2001 From: Luis Sanchez Date: Wed, 22 Oct 2025 10:01:04 -0400 Subject: [PATCH] Add FeatureGate: ConfigurablePKI --- features/features.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/features/features.go b/features/features.go index 9189b9655cb..a845351b6be 100644 --- a/features/features.go +++ b/features/features.go @@ -900,4 +900,12 @@ var ( enhancementPR("https://github.com/openshift/enhancements/pull/1874"). enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade). mustRegister() + + FeatureGateConfigurablePKI = newFeatureGate("ConfigurablePKI"). + reportProblemsToJiraComponent("kube-apiserver"). + contactPerson("sanchezl"). + productScope(ocpSpecific). + enhancementPR("https://github.com/openshift/enhancements/pull/1869"). + enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade). + mustRegister() )