From ef8ac6149b6cb0051d29118b2fc7177b0fccefe4 Mon Sep 17 00:00:00 2001 From: Victor Kareh Date: Thu, 24 Sep 2020 09:18:31 -0400 Subject: [PATCH] verify-quota: Check for only 100 vCPU To allow users to create a single cluster, we can decrease the quota check for only 100 vCPU. --- pkg/aws/quota.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/aws/quota.go b/pkg/aws/quota.go index 92aa4a6adb..ab2a1515ee 100644 --- a/pkg/aws/quota.go +++ b/pkg/aws/quota.go @@ -27,7 +27,7 @@ var serviceQuotaServices = []quota{ ServiceCode: "ec2", QuotaCode: "L-1216C47A", QuotaName: "Running On-Demand Standard (A, C, D, H, I, M, R, T, Z) instances", - DesiredValue: aws.Float64(200.0), + DesiredValue: aws.Float64(100.0), }, { ServiceCode: "vpc",