Skip to content

Commit ec5602c

Browse files
committed
CNF-13731: Add HTTP01ChallengeProxy
1 parent 9f36190 commit ec5602c

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1212
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1313
| ExternalSnapshotMetadata| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
14+
| HTTP01ChallengeProxy| | | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
1415
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1516
| NewOLMOwnSingleNamespace| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1617
| 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
@@ -874,4 +874,12 @@ var (
874874
enhancementPR("https://github.com/openshift/enhancements/pull/1785").
875875
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
876876
mustRegister()
877+
878+
FeatureGateHTTP01ChallengeProxy = newFeatureGate("HTTP01ChallengeProxy").
879+
reportProblemsToJiraComponent("kube-apiserver").
880+
contactPerson("sebrandon1").
881+
productScope(ocpSpecific).
882+
enhancementPR("https://github.com/openshift/enhancements/pull/1773").
883+
enableIn(configv1.TechPreviewNoUpgrade).
884+
mustRegister()
877885
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@
9797
{
9898
"name": "GCPCustomAPIEndpointsInstall"
9999
},
100+
{
101+
"name": "HTTP01ChallengeProxy"
102+
},
100103
{
101104
"name": "HighlyAvailableArbiter"
102105
},

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
@@ -170,6 +170,9 @@
170170
{
171171
"name": "GatewayAPIController"
172172
},
173+
{
174+
"name": "HTTP01ChallengeProxy"
175+
},
173176
{
174177
"name": "HighlyAvailableArbiter"
175178
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@
100100
{
101101
"name": "GCPCustomAPIEndpointsInstall"
102102
},
103+
{
104+
"name": "HTTP01ChallengeProxy"
105+
},
103106
{
104107
"name": "HighlyAvailableArbiter"
105108
},

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
@@ -155,6 +155,9 @@
155155
{
156156
"name": "GatewayAPIController"
157157
},
158+
{
159+
"name": "HTTP01ChallengeProxy"
160+
},
158161
{
159162
"name": "HighlyAvailableArbiter"
160163
},

0 commit comments

Comments
 (0)