Skip to content

Commit 472571c

Browse files
MCO-1736: promote ImageModeStatusReporting feature gate to default
1 parent ad9eb11 commit 472571c

6 files changed

Lines changed: 21 additions & 21 deletions

features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
| GCPDualStackInstall| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6666
| GatewayAPIWithoutOLM| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6767
| HyperShiftOnlyDynamicResourceAllocation| <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | |
68-
| ImageModeStatusReporting| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
6968
| IngressControllerDynamicConfigurationManager| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
7069
| IrreconcilableMachineConfig| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
7170
| KMSEncryption| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
@@ -99,6 +98,7 @@
9998
| EventTTL| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
10099
| ExternalOIDC| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
101100
| ExternalOIDCWithUIDAndExtraClaimMappings| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
101+
| ImageModeStatusReporting| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
102102
| ImageStreamImportMode| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
103103
| InsightsConfig| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
104104
| InsightsOnDemandDataGather| <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |

features/features.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ var (
262262
contactPerson("ijanssen").
263263
productScope(ocpSpecific).
264264
enhancementPR("https://github.com/openshift/enhancements/pull/1809").
265-
enable(inTechPreviewNoUpgrade(), inDevPreviewNoUpgrade()).
265+
enable(inDefault(), inOKD(), inTechPreviewNoUpgrade(), inDevPreviewNoUpgrade()).
266266
mustRegister()
267267

268268
FeatureGateClusterAPIInstall = newFeatureGate("ClusterAPIInstall").
@@ -1005,11 +1005,11 @@ var (
10051005
enable(inDevPreviewNoUpgrade(), inTechPreviewNoUpgrade()).
10061006
mustRegister()
10071007

1008-
FeatureGateConfidentialCluster = newFeatureGate("ConfidentialCluster").
1009-
reportProblemsToJiraComponent("ConfidentialClusters").
1010-
contactPerson("fjin").
1011-
productScope(ocpSpecific).
1012-
enhancementPR("https://github.com/openshift/enhancements/pull/1962").
1013-
enable(inDevPreviewNoUpgrade()).
1014-
mustRegister()
1008+
FeatureGateConfidentialCluster = newFeatureGate("ConfidentialCluster").
1009+
reportProblemsToJiraComponent("ConfidentialClusters").
1010+
contactPerson("fjin").
1011+
productScope(ocpSpecific).
1012+
enhancementPR("https://github.com/openshift/enhancements/pull/1962").
1013+
enable(inDevPreviewNoUpgrade()).
1014+
mustRegister()
10151015
)

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,6 @@
167167
{
168168
"name": "GatewayAPIWithoutOLM"
169169
},
170-
{
171-
"name": "ImageModeStatusReporting"
172-
},
173170
{
174171
"name": "IngressControllerDynamicConfigurationManager"
175172
},
@@ -313,6 +310,9 @@
313310
{
314311
"name": "HyperShiftOnlyDynamicResourceAllocation"
315312
},
313+
{
314+
"name": "ImageModeStatusReporting"
315+
},
316316
{
317317
"name": "ImageStreamImportMode"
318318
},

payload-manifests/featuregates/featureGate-4-10-Hypershift-OKD.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,6 @@
169169
{
170170
"name": "GatewayAPIWithoutOLM"
171171
},
172-
{
173-
"name": "ImageModeStatusReporting"
174-
},
175172
{
176173
"name": "IngressControllerDynamicConfigurationManager"
177174
},
@@ -315,6 +312,9 @@
315312
{
316313
"name": "HyperShiftOnlyDynamicResourceAllocation"
317314
},
315+
{
316+
"name": "ImageModeStatusReporting"
317+
},
318318
{
319319
"name": "ImageStreamImportMode"
320320
},

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,6 @@
167167
{
168168
"name": "HyperShiftOnlyDynamicResourceAllocation"
169169
},
170-
{
171-
"name": "ImageModeStatusReporting"
172-
},
173170
{
174171
"name": "IngressControllerDynamicConfigurationManager"
175172
},
@@ -307,6 +304,9 @@
307304
{
308305
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
309306
},
307+
{
308+
"name": "ImageModeStatusReporting"
309+
},
310310
{
311311
"name": "ImageStreamImportMode"
312312
},

payload-manifests/featuregates/featureGate-4-10-SelfManagedHA-OKD.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,6 @@
169169
{
170170
"name": "HyperShiftOnlyDynamicResourceAllocation"
171171
},
172-
{
173-
"name": "ImageModeStatusReporting"
174-
},
175172
{
176173
"name": "IngressControllerDynamicConfigurationManager"
177174
},
@@ -309,6 +306,9 @@
309306
{
310307
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
311308
},
309+
{
310+
"name": "ImageModeStatusReporting"
311+
},
312312
{
313313
"name": "ImageStreamImportMode"
314314
},

0 commit comments

Comments
 (0)