Skip to content

Commit 768a119

Browse files
Merge pull request #2326 from vr4manta/SPLAT-2213
SPLAT-2213: Added vSphere mixed node env feature gate
2 parents 9cbdb71 + 072c8ad commit 768a119

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
| SELinuxChangePolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1616
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1717
| SigstoreImageVerificationPKI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
18+
| VSphereMixedNodeEnv| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1819
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1920
| AWSClusterHostedDNS| | | <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> |
2021
| AWSDedicatedHosts| | | <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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -822,4 +822,12 @@ var (
822822
enhancementPR("https://github.com/openshift/enhancements/pull/1781").
823823
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
824824
mustRegister()
825+
826+
FeatureGateVSphereMixedNodeEnv = newFeatureGate("VSphereMixedNodeEnv").
827+
reportProblemsToJiraComponent("splat").
828+
contactPerson("vr4manta").
829+
productScope(ocpSpecific).
830+
enhancementPR("https://github.com/openshift/enhancements/pull/1772").
831+
enableIn(configv1.DevPreviewNoUpgrade).
832+
mustRegister()
825833
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@
184184
{
185185
"name": "VSphereHostVMGroupZonal"
186186
},
187+
{
188+
"name": "VSphereMixedNodeEnv"
189+
},
187190
{
188191
"name": "VSphereMultiDisk"
189192
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@
293293
{
294294
"name": "VSphereHostVMGroupZonal"
295295
},
296+
{
297+
"name": "VSphereMixedNodeEnv"
298+
},
296299
{
297300
"name": "VSphereMultiDisk"
298301
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
},
6363
{
6464
"name": "SigstoreImageVerificationPKI"
65+
},
66+
{
67+
"name": "VSphereMixedNodeEnv"
6568
}
6669
],
6770
"enabled": [

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,9 @@
184184
{
185185
"name": "VSphereHostVMGroupZonal"
186186
},
187+
{
188+
"name": "VSphereMixedNodeEnv"
189+
},
187190
{
188191
"name": "VSphereMultiDisk"
189192
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@
293293
{
294294
"name": "VSphereHostVMGroupZonal"
295295
},
296+
{
297+
"name": "VSphereMixedNodeEnv"
298+
},
296299
{
297300
"name": "VSphereMultiDisk"
298301
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
},
4848
{
4949
"name": "SigstoreImageVerificationPKI"
50+
},
51+
{
52+
"name": "VSphereMixedNodeEnv"
5053
}
5154
],
5255
"enabled": [

0 commit comments

Comments
 (0)