Skip to content

Commit

Permalink
Merge pull request #1947 from r4f4/multi-arch-install-gates
Browse files Browse the repository at this point in the history
features: add multi-arch feature gate per platform
  • Loading branch information
openshift-merge-bot[bot] committed Jul 4, 2024
2 parents a89a7c1 + 8a9df47 commit 01da8e8
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 0 deletions.
3 changes: 3 additions & 0 deletions features.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
| EventedPLEG| | | | | | |
| MachineAPIMigration| | | | | | |
| MachineAPIOperatorDisableMachineHealthCheckController| | | | | | |
| MultiArchInstallAWS| | | | | | |
| MultiArchInstallAzure| | | | | | |
| MultiArchInstallGCP| | | | | | |
| GatewayAPI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
| AutomatedEtcdBackup| | | <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> |
| CSIDriverSharedResource| | | <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> |
Expand Down
18 changes: 18 additions & 0 deletions features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,4 +548,22 @@ var (
productScope(ocpSpecific).
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
mustRegister()

FeatureGateMultiArchInstallAWS = newFeatureGate("MultiArchInstallAWS").
reportProblemsToJiraComponent("Installer").
contactPerson("r4f4").
productScope(ocpSpecific).
mustRegister()

FeatureGateMultiArchInstallAzure = newFeatureGate("MultiArchInstallAzure").
reportProblemsToJiraComponent("Installer").
contactPerson("r4f4").
productScope(ocpSpecific).
mustRegister()

FeatureGateMultiArchInstallGCP = newFeatureGate("MultiArchInstallGCP").
reportProblemsToJiraComponent("Installer").
contactPerson("r4f4").
productScope(ocpSpecific).
mustRegister()
)
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@
{
"name": "MixedCPUsAllocation"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
},
{
"name": "NetworkSegmentation"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@
},
{
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
}
],
"enabled": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
},
{
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
}
],
"enabled": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,15 @@
{
"name": "MixedCPUsAllocation"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
},
{
"name": "NetworkSegmentation"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@
},
{
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
}
],
"enabled": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@
},
{
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
},
{
"name": "MultiArchInstallAWS"
},
{
"name": "MultiArchInstallAzure"
},
{
"name": "MultiArchInstallGCP"
}
],
"enabled": [
Expand Down

0 comments on commit 01da8e8

Please sign in to comment.