-
Notifications
You must be signed in to change notification settings - Fork 1k
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
fix(config): adding some missing instances block device config #4087
fix(config): adding some missing instances block device config #4087
Conversation
@abelzberg please let me know if you have feedback |
30e93f0
to
db5be7d
Compare
Added offline feedback from @abelzberg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think some of the values were off based on the instance-type pages
@@ -99,6 +99,11 @@ class BlockDeviceConfig { | |||
"i3.16xlarge" : enumeratedBlockDevicesWithVirtualName(8), | |||
"i3.metal" : enumeratedBlockDevicesWithVirtualName(8), | |||
|
|||
"i3en.large" : enumeratedBlockDevicesWithVirtualName(1), | |||
"i3en.xlarge" : enumeratedBlockDevicesWithVirtualName(1), | |||
"i3en.2xlarge": enumeratedBlockDevicesWithVirtualName(1), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"i3en.2xlarge": enumeratedBlockDevicesWithVirtualName(1), | |
"i3en.2xlarge": enumeratedBlockDevicesWithVirtualName(2), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think, based on this table: https://aws.amazon.com/ec2/instance-types/i3en/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
worth adding the rest of the i3en types from that page while you are in here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
"m5d.12xlarge" : enumeratedBlockDevicesWithVirtualName(2), | ||
"m5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(2), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"m5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(2), | |
"m5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(4), |
"r5d.12xlarge" : enumeratedBlockDevicesWithVirtualName(2), | ||
"r5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(2), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"r5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(2), | |
"r5d.16xlarge" : enumeratedBlockDevicesWithVirtualName(4), |
"m5.12xlarge" : sizedBlockDevicesForEbs(120), | ||
"m5.16xlarge" : sizedBlockDevicesForEbs(120), | ||
"m5.24xlarge" : sizedBlockDevicesForEbs(120), | ||
|
||
"m5d.large" : enumeratedBlockDevicesWithVirtualName(1), | ||
"m5d.xlarge" : enumeratedBlockDevicesWithVirtualName(1), | ||
"m5d.2xlarge" : enumeratedBlockDevicesWithVirtualName(1), | ||
"m5d.4xlarge" : enumeratedBlockDevicesWithVirtualName(1), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"m5d.4xlarge" : enumeratedBlockDevicesWithVirtualName(1), | |
"m5d.4xlarge" : enumeratedBlockDevicesWithVirtualName(2), |
No description provided.