-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Certain instance types not supported #64
Comments
Actually, I found the cloudformation template. It's defining these supported instance types: "EcsInstanceType": {
"Type": "String",
"Description": "ECS EC2 instance type",
"Default": "t2.micro",
"AllowedValues": [
"t2.micro",
"t2.small",
"t2.medium",
"t2.large",
"m3.medium",
"m3.large",
"m3.xlarge",
"m3.2xlarge",
"c4.large",
"c4.xlarge",
"c4.2xlarge",
"c4.4xlarge",
"c4.8xlarge",
"c3.large",
"c3.xlarge",
"c3.2xlarge",
"c3.4xlarge",
"c3.8xlarge",
"r3.large",
"r3.xlarge",
"r3.2xlarge",
"r3.4xlarge",
"r3.8xlarge",
"i2.xlarge",
"i2.2xlarge",
"i2.4xlarge",
"i2.8xlarge"
] Any particular reason m4.* is not supported? |
@dtest There is no specific reason why m4.* is not supported; I think we just missed including it in the list. |
was merged in commit dfca896. Pending Release. |
released in v0.2.0 |
t2.xlarge, t2.2xlarge are also missing from the template. |
|
The same goes for i3.* instances. Could those be added too? |
For me, I found that the instances are in the list, but it failed due to the VPC not supporting those instance types. If you do a list, you will see the error (in my case.) |
Using ecs-cli to setup a cluster, I get an error for unsupported instance type for 'm4.xlarge' or 'm4.2xlarge':
While I couldn't find what ImageID the cloudformation template uses, according to the documentation on setting up an ECS instance, ECS would use the following ami for us-east-1 region: ami-2b3b6041 (http://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html)
If I use that AMI to create the instance itself, it indicates support for the m4.* instance classes.
c4.2xlarge works fine via ecs-cli
Are various instance types not supported? If so, is this documented somewhere?
Also, sidenote: Is the ECS cloudformation template available somewhere?
The text was updated successfully, but these errors were encountered: