From f0992658b358e2ace3cc0087b6cee228b7ae98c1 Mon Sep 17 00:00:00 2001 From: Eddie Torres Date: Fri, 6 Oct 2023 15:59:34 +0000 Subject: [PATCH] Add volume attachment limits for c7a instance family Signed-off-by: Eddie Torres --- pkg/cloud/volume_limits.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloud/volume_limits.go b/pkg/cloud/volume_limits.go index 9aefd8df71..ef31303320 100644 --- a/pkg/cloud/volume_limits.go +++ b/pkg/cloud/volume_limits.go @@ -17,7 +17,7 @@ const ( func init() { // This list of Nitro instance types have a dedicated Amazon EBS volume limit of up to 128 attachments, depending on instance size. // The limit is not shared with other device attachments: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/volume_limits.html#nitro-system-limits - instanceFamilies := []string{"m7i", "m7a", "c7i", "r7a", "r7iz"} + instanceFamilies := []string{"m7i", "m7a", "c7i", "c7a", "r7a", "r7iz"} commonInstanceSizes := []string{"medium", "large", "xlarge", "2xlarge", "4xlarge", "8xlarge", "12xlarge"} for _, family := range instanceFamilies {