Skip to content

Commit 916c700

Browse files
Merge pull request #2587 from elmiko/add-provisioning-request-fg
AUTOSCALE-172: add feature gate for ProvisioningRequest CRD
2 parents 42e8320 + 4aac2ce commit 916c700

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
| NewOLMOwnSingleNamespace| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1515
| NewOLMPreflightPermissionChecks| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1616
| NoRegistryClusterInstall| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
17+
| ProvisioningRequestAvailable| | | <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
| NewOLMWebhookProviderOpenshiftServiceCA| | <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> |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,4 +931,12 @@ var (
931931
enhancementPR("https://github.com/openshift/enhancements/pull/1803").
932932
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
933933
mustRegister()
934+
935+
FeatureGateProvisioningRequestAvailable = newFeatureGate("ProvisioningRequestAvailable").
936+
reportProblemsToJiraComponent("Cluster Autoscaler").
937+
contactPerson("elmiko").
938+
productScope(ocpSpecific).
939+
enhancementPR("https://github.com/openshift/enhancements/pull/1752").
940+
enableIn(configv1.DevPreviewNoUpgrade).
941+
mustRegister()
934942
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,9 @@
204204
{
205205
"name": "OnPremDNSRecords"
206206
},
207+
{
208+
"name": "ProvisioningRequestAvailable"
209+
},
207210
{
208211
"name": "SELinuxMount"
209212
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,9 @@
295295
{
296296
"name": "ProcMountType"
297297
},
298+
{
299+
"name": "ProvisioningRequestAvailable"
300+
},
298301
{
299302
"name": "RouteAdvertisements"
300303
},

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
"name": "NoRegistryClusterInstall"
6161
},
62+
{
63+
"name": "ProvisioningRequestAvailable"
64+
},
6265
{
6366
"name": "ShortCertRotation"
6467
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,9 @@
198198
{
199199
"name": "OnPremDNSRecords"
200200
},
201+
{
202+
"name": "ProvisioningRequestAvailable"
203+
},
201204
{
202205
"name": "SELinuxMount"
203206
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,9 @@
295295
{
296296
"name": "ProcMountType"
297297
},
298+
{
299+
"name": "ProvisioningRequestAvailable"
300+
},
298301
{
299302
"name": "RouteAdvertisements"
300303
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@
3838
{
3939
"name": "MultiArchInstallAzure"
4040
},
41+
{
42+
"name": "ProvisioningRequestAvailable"
43+
},
4144
{
4245
"name": "ShortCertRotation"
4346
}

0 commit comments

Comments
 (0)