Skip to content

Commit 243758d

Browse files
Merge pull request #2549 from pablintino/osstreams-feature-gate
MCO-1941: Add OSStream FeatureGate
2 parents 9a9f303 + 4646bbb commit 243758d

8 files changed

+26
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
| MutableCSINodeAllocatableCount| | | <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> |
6161
| MutatingAdmissionPolicy| | | <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> |
6262
| NutanixMultiSubnets| | | <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> |
63+
| OSStreams| | | <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> |
6364
| OVNObservability| | | <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> |
6465
| SELinuxMount| | | <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> |
6566
| SignatureStores| | | <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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -893,4 +893,11 @@ var (
893893
enhancementPR("https://github.com/kubernetes/enhancements/issues/4876").
894894
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
895895
mustRegister()
896+
FeatureGateOSStreams = newFeatureGate("OSStreams").
897+
reportProblemsToJiraComponent("MachineConfigOperator").
898+
contactPerson("pabrodri").
899+
productScope(ocpSpecific).
900+
enhancementPR("https://github.com/openshift/enhancements/pull/1874").
901+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
902+
mustRegister()
896903
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@
186186
{
187187
"name": "NutanixMultiSubnets"
188188
},
189+
{
190+
"name": "OSStreams"
191+
},
189192
{
190193
"name": "OVNObservability"
191194
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,9 @@
265265
{
266266
"name": "NutanixMultiSubnets"
267267
},
268+
{
269+
"name": "OSStreams"
270+
},
268271
{
269272
"name": "OVNObservability"
270273
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,9 @@
268268
{
269269
"name": "NutanixMultiSubnets"
270270
},
271+
{
272+
"name": "OSStreams"
273+
},
271274
{
272275
"name": "OVNObservability"
273276
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@
180180
{
181181
"name": "NutanixMultiSubnets"
182182
},
183+
{
184+
"name": "OSStreams"
185+
},
183186
{
184187
"name": "OVNObservability"
185188
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,9 @@
265265
{
266266
"name": "NutanixMultiSubnets"
267267
},
268+
{
269+
"name": "OSStreams"
270+
},
268271
{
269272
"name": "OVNObservability"
270273
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,9 @@
268268
{
269269
"name": "NutanixMultiSubnets"
270270
},
271+
{
272+
"name": "OSStreams"
273+
},
271274
{
272275
"name": "OVNObservability"
273276
},

0 commit comments

Comments
 (0)