Skip to content

Commit d538a39

Browse files
committed
CNF-13731: Add HTTP01ChallengeProxy
1 parent 7605f9b commit d538a39

8 files changed

+33
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1111
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1212
| ExternalSnapshotMetadata| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
13+
| HTTP01ChallengeProxy| | | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
1314
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1415
| NewOLMOwnSingleNamespace| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1516
| NewOLMPreflightPermissionChecks| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,4 +872,12 @@ var (
872872
enhancementPR("https://github.com/openshift/enhancements/pull/1785").
873873
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
874874
mustRegister()
875+
876+
FeatureGateHTTP01ChallengeProxy = newFeatureGate("HTTP01ChallengeProxy").
877+
reportProblemsToJiraComponent("kube-apiserver").
878+
contactPerson("sebrandon1").
879+
productScope(ocpSpecific).
880+
enhancementPR("https://github.com/openshift/enhancements/pull/1773").
881+
enableIn(configv1.TechPreviewNoUpgrade).
882+
mustRegister()
875883
)

payload-manifests/featuregates/featureGate-Hypershift-Default.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@
9797
{
9898
"name": "GCPCustomAPIEndpointsInstall"
9999
},
100+
{
101+
"name": "HTTP01ChallengeProxy"
102+
},
103+
{
104+
"name": "HighlyAvailableArbiter"
105+
},
100106
{
101107
"name": "ImageModeStatusReporting"
102108
},

payload-manifests/featuregates/featureGate-Hypershift-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
{
2222
"name": "EventedPLEG"
2323
},
24+
{
25+
"name": "HTTP01ChallengeProxy"
26+
},
2427
{
2528
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
2629
},

payload-manifests/featuregates/featureGate-Hypershift-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@
167167
{
168168
"name": "GatewayAPIController"
169169
},
170+
{
171+
"name": "HTTP01ChallengeProxy"
172+
},
170173
{
171174
"name": "HighlyAvailableArbiter"
172175
},

payload-manifests/featuregates/featureGate-SelfManagedHA-Default.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,12 @@
100100
{
101101
"name": "GCPCustomAPIEndpointsInstall"
102102
},
103+
{
104+
"name": "HTTP01ChallengeProxy"
105+
},
106+
{
107+
"name": "HighlyAvailableArbiter"
108+
},
103109
{
104110
"name": "ImageModeStatusReporting"
105111
},

payload-manifests/featuregates/featureGate-SelfManagedHA-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
{
2222
"name": "EventedPLEG"
2323
},
24+
{
25+
"name": "HTTP01ChallengeProxy"
26+
},
2427
{
2528
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
2629
},

payload-manifests/featuregates/featureGate-SelfManagedHA-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@
152152
{
153153
"name": "GatewayAPIController"
154154
},
155+
{
156+
"name": "HTTP01ChallengeProxy"
157+
},
155158
{
156159
"name": "HighlyAvailableArbiter"
157160
},

0 commit comments

Comments
 (0)