Skip to content

Commit 072c8ad

Browse files
committed
Added vSphere mixed node env feature gate
1 parent 9052dea commit 072c8ad

8 files changed

+28
-1
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
| SELinuxChangePolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1515
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1616
| SigstoreImageVerificationPKI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
17+
| VSphereMixedNodeEnv| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1718
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1819
| 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> |
1920
| 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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,12 +819,20 @@ var (
819819
enhancementPR("https://github.com/openshift/enhancements/pull/1779").
820820
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
821821
mustRegister()
822-
822+
823823
FeatureGateAWSDedicatedHosts = newFeatureGate("AWSDedicatedHosts").
824824
reportProblemsToJiraComponent("Installer").
825825
contactPerson("faermanj").
826826
productScope(ocpSpecific).
827827
enhancementPR("https://github.com/openshift/enhancements/pull/1781").
828828
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
829829
mustRegister()
830+
831+
FeatureGateVSphereMixedNodeEnv = newFeatureGate("VSphereMixedNodeEnv").
832+
reportProblemsToJiraComponent("splat").
833+
contactPerson("vr4manta").
834+
productScope(ocpSpecific).
835+
enhancementPR("https://github.com/openshift/enhancements/pull/1772").
836+
enableIn(configv1.DevPreviewNoUpgrade).
837+
mustRegister()
830838
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@
190190
{
191191
"name": "VSphereHostVMGroupZonal"
192192
},
193+
{
194+
"name": "VSphereMixedNodeEnv"
195+
},
193196
{
194197
"name": "VSphereMultiDisk"
195198
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@
296296
{
297297
"name": "VSphereHostVMGroupZonal"
298298
},
299+
{
300+
"name": "VSphereMixedNodeEnv"
301+
},
299302
{
300303
"name": "VSphereMultiDisk"
301304
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@
5959
},
6060
{
6161
"name": "SigstoreImageVerificationPKI"
62+
},
63+
{
64+
"name": "VSphereMixedNodeEnv"
6265
}
6366
],
6467
"enabled": [

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@
190190
{
191191
"name": "VSphereHostVMGroupZonal"
192192
},
193+
{
194+
"name": "VSphereMixedNodeEnv"
195+
},
193196
{
194197
"name": "VSphereMultiDisk"
195198
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,9 @@
296296
{
297297
"name": "VSphereHostVMGroupZonal"
298298
},
299+
{
300+
"name": "VSphereMixedNodeEnv"
301+
},
299302
{
300303
"name": "VSphereMultiDisk"
301304
},

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)