Skip to content

Commit a7fe394

Browse files
committed
chore: add message for quota limits
1 parent cfaccd1 commit a7fe394

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/emd/commands/deploy.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,9 @@ def deploy(
387387
choices=[
388388
Choice(
389389
title=instance.instance_type,
390-
description=instance.description,
390+
description=(instance.description + '\n\n' +
391+
"Note: If your deployment takes over 20 minutes, check your AWS service quotas, especially for G or P instances. Quotas are based on vCPUs, not instance count. Ensure your requests fit the limits. See Amazon EC2 instance type quotas for detail: https://docs.aws.amazon.com/ec2/latest/instances/ec2-instance-quota-types.html."
392+
)
391393
)
392394
for instance in supported_instances
393395
],

0 commit comments

Comments
 (0)