Skip to content

Commit

Permalink
Merge pull request #1970 from Jeffwan/add_new_instance_type
Browse files Browse the repository at this point in the history
Add m5ad, r5ad and t3a instance families
  • Loading branch information
k8s-ci-robot authored Apr 29, 2019
2 parents 725f06c + 0ce64c7 commit d9a8661
Showing 1 changed file with 114 additions and 0 deletions.
114 changes: 114 additions & 0 deletions cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,42 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 16384,
GPU: 0,
},
"m5ad.12xlarge": {
InstanceType: "m5ad.12xlarge",
VCPU: 48,
MemoryMb: 196608,
GPU: 0,
},
"m5ad.24xlarge": {
InstanceType: "m5ad.24xlarge",
VCPU: 96,
MemoryMb: 393216,
GPU: 0,
},
"m5ad.2xlarge": {
InstanceType: "m5ad.2xlarge",
VCPU: 8,
MemoryMb: 32768,
GPU: 0,
},
"m5ad.4xlarge": {
InstanceType: "m5ad.4xlarge",
VCPU: 16,
MemoryMb: 65536,
GPU: 0,
},
"m5ad.large": {
InstanceType: "m5ad.large",
VCPU: 2,
MemoryMb: 8192,
GPU: 0,
},
"m5ad.xlarge": {
InstanceType: "m5ad.xlarge",
VCPU: 4,
MemoryMb: 16384,
GPU: 0,
},
"m5d": {
InstanceType: "m5d",
VCPU: 96,
Expand Down Expand Up @@ -969,6 +1005,42 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 32768,
GPU: 0,
},
"r5ad.12xlarge": {
InstanceType: "r5ad.12xlarge",
VCPU: 48,
MemoryMb: 393216,
GPU: 0,
},
"r5ad.24xlarge": {
InstanceType: "r5ad.24xlarge",
VCPU: 96,
MemoryMb: 786432,
GPU: 0,
},
"r5ad.2xlarge": {
InstanceType: "r5ad.2xlarge",
VCPU: 8,
MemoryMb: 65536,
GPU: 0,
},
"r5ad.4xlarge": {
InstanceType: "r5ad.4xlarge",
VCPU: 16,
MemoryMb: 131072,
GPU: 0,
},
"r5ad.large": {
InstanceType: "r5ad.large",
VCPU: 2,
MemoryMb: 16384,
GPU: 0,
},
"r5ad.xlarge": {
InstanceType: "r5ad.xlarge",
VCPU: 4,
MemoryMb: 32768,
GPU: 0,
},
"r5d": {
InstanceType: "r5d",
VCPU: 96,
Expand Down Expand Up @@ -1107,6 +1179,48 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 16384,
GPU: 0,
},
"t3a.2xlarge": {
InstanceType: "t3a.2xlarge",
VCPU: 8,
MemoryMb: 32768,
GPU: 0,
},
"t3a.large": {
InstanceType: "t3a.large",
VCPU: 2,
MemoryMb: 8192,
GPU: 0,
},
"t3a.medium": {
InstanceType: "t3a.medium",
VCPU: 2,
MemoryMb: 4096,
GPU: 0,
},
"t3a.micro": {
InstanceType: "t3a.micro",
VCPU: 2,
MemoryMb: 1024,
GPU: 0,
},
"t3a.nano": {
InstanceType: "t3a.nano",
VCPU: 2,
MemoryMb: 512,
GPU: 0,
},
"t3a.small": {
InstanceType: "t3a.small",
VCPU: 2,
MemoryMb: 2048,
GPU: 0,
},
"t3a.xlarge": {
InstanceType: "t3a.xlarge",
VCPU: 4,
MemoryMb: 16384,
GPU: 0,
},
"u-12tb1": {
InstanceType: "u-12tb1",
VCPU: 448,
Expand Down

0 comments on commit d9a8661

Please sign in to comment.