Skip to content

Commit e577b4d

Browse files
Merge pull request #2264 from perdasilva/newolmownsinglenamespace-updated
OPRUN-3766: Add FeatureFlag for OLMv1 Single/OwnNamespace
2 parents 9b80d67 + 869bf7a commit e577b4d

8 files changed

+27
-0
lines changed

features.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| DualReplica| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1010
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1111
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
12+
| NewOLMOwnSingleNamespace| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1213
| NewOLMPreflightPermissionChecks| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1314
| SELinuxChangePolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1415
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |

features/features.go

+8
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,14 @@ var (
539539
enableForClusterProfile(SelfManaged, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
540540
mustRegister()
541541

542+
FeatureGateNewOLMOwnSingleNamespace = newFeatureGate("NewOLMOwnSingleNamespace").
543+
reportProblemsToJiraComponent("olm").
544+
contactPerson("nschieder").
545+
productScope(ocpSpecific).
546+
enhancementPR("https://github.com/openshift/enhancements/pull/1774").
547+
enableForClusterProfile(SelfManaged, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
548+
mustRegister()
549+
542550
FeatureGateInsightsOnDemandDataGather = newFeatureGate("InsightsOnDemandDataGather").
543551
reportProblemsToJiraComponent("insights").
544552
contactPerson("tremes").

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

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@
121121
{
122122
"name": "NewOLMCatalogdAPIV1Metas"
123123
},
124+
{
125+
"name": "NewOLMOwnSingleNamespace"
126+
},
124127
{
125128
"name": "NewOLMPreflightPermissionChecks"
126129
},

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

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
{
3434
"name": "NewOLMCatalogdAPIV1Metas"
3535
},
36+
{
37+
"name": "NewOLMOwnSingleNamespace"
38+
},
3639
{
3740
"name": "NewOLMPreflightPermissionChecks"
3841
},

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

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
{
4343
"name": "NewOLMCatalogdAPIV1Metas"
4444
},
45+
{
46+
"name": "NewOLMOwnSingleNamespace"
47+
},
4548
{
4649
"name": "NewOLMPreflightPermissionChecks"
4750
},

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

+3
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@
121121
{
122122
"name": "NewOLMCatalogdAPIV1Metas"
123123
},
124+
{
125+
"name": "NewOLMOwnSingleNamespace"
126+
},
124127
{
125128
"name": "NewOLMPreflightPermissionChecks"
126129
},

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

+3
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@
209209
{
210210
"name": "NewOLMCatalogdAPIV1Metas"
211211
},
212+
{
213+
"name": "NewOLMOwnSingleNamespace"
214+
},
212215
{
213216
"name": "NewOLMPreflightPermissionChecks"
214217
},

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

+3
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,9 @@
218218
{
219219
"name": "NewOLMCatalogdAPIV1Metas"
220220
},
221+
{
222+
"name": "NewOLMOwnSingleNamespace"
223+
},
221224
{
222225
"name": "NewOLMPreflightPermissionChecks"
223226
},

0 commit comments

Comments
 (0)