Skip to content

Commit

Permalink
Add AWS m6i type machines (#97)
Browse files Browse the repository at this point in the history
* Add AWS m6i type machines
  • Loading branch information
patrickhuy authored Aug 26, 2021
1 parent f1ae61b commit 1db4894
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1516,6 +1516,66 @@ var InstanceTypes = map[string]*InstanceType{
MemoryMb: 16384,
GPU: 0,
},
"m6i": {
InstanceType: "m6i",
VCPU: 128,
MemoryMb: 0,
GPU: 0,
},
"m6i.12xlarge": {
InstanceType: "m6i.12xlarge",
VCPU: 48,
MemoryMb: 196608,
GPU: 0,
},
"m6i.16xlarge": {
InstanceType: "m6i.16xlarge",
VCPU: 64,
MemoryMb: 262144,
GPU: 0,
},
"m6i.24xlarge": {
InstanceType: "m6i.24xlarge",
VCPU: 96,
MemoryMb: 393216,
GPU: 0,
},
"m6i.32xlarge": {
InstanceType: "m6i.32xlarge",
VCPU: 128,
MemoryMb: 524288,
GPU: 0,
},
"m6i.2xlarge": {
InstanceType: "m6i.2xlarge",
VCPU: 8,
MemoryMb: 32768,
GPU: 0,
},
"m6i.4xlarge": {
InstanceType: "m6i.4xlarge",
VCPU: 16,
MemoryMb: 65536,
GPU: 0,
},
"m6i.8xlarge": {
InstanceType: "m6i.8xlarge",
VCPU: 32,
MemoryMb: 131072,
GPU: 0,
},
"m6i.large": {
InstanceType: "m6i.large",
VCPU: 2,
MemoryMb: 8192,
GPU: 0,
},
"m6i.xlarge": {
InstanceType: "m6i.xlarge",
VCPU: 4,
MemoryMb: 16384,
GPU: 0,
},
"p2": {
InstanceType: "p2",
VCPU: 64,
Expand Down

0 comments on commit 1db4894

Please sign in to comment.