Skip to content

Commit

Permalink
Merge pull request #483 from miry/aws-c5-instances
Browse files Browse the repository at this point in the history
Added aws c5 instance types.
  • Loading branch information
mwielgus authored Nov 23, 2017
2 parents 26960b4 + fa0a663 commit d31e65f
Showing 1 changed file with 72 additions and 6 deletions.
78 changes: 72 additions & 6 deletions cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,48 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 7680,
GPU: 0,
},
"c5": {
InstanceType: "c5",
VCPU: 72,
MemoryMb: 0,
GPU: 0,
},
"c5.18xlarge": {
InstanceType: "c5.18xlarge",
VCPU: 72,
MemoryMb: 147456,
GPU: 0,
},
"c5.2xlarge": {
InstanceType: "c5.2xlarge",
VCPU: 8,
MemoryMb: 16384,
GPU: 0,
},
"c5.4xlarge": {
InstanceType: "c5.4xlarge",
VCPU: 16,
MemoryMb: 32768,
GPU: 0,
},
"c5.9xlarge": {
InstanceType: "c5.9xlarge",
VCPU: 36,
MemoryMb: 73728,
GPU: 0,
},
"c5.large": {
InstanceType: "c5.large",
VCPU: 2,
MemoryMb: 4096,
GPU: 0,
},
"c5.xlarge": {
InstanceType: "c5.xlarge",
VCPU: 4,
MemoryMb: 8192,
GPU: 0,
},
"cc1.4xlarge": {
InstanceType: "cc1.4xlarge",
VCPU: 16,
Expand Down Expand Up @@ -225,12 +267,6 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 249856,
GPU: 2,
},
"hi1.4xlarge": {
InstanceType: "hi1.4xlarge",
VCPU: 16,
MemoryMb: 61952,
GPU: 0,
},
"hs1.8xlarge": {
InstanceType: "hs1.8xlarge",
VCPU: 17,
Expand Down Expand Up @@ -621,10 +657,40 @@ var InstanceTypes = map[string]*instanceType{
MemoryMb: 0,
GPU: 0,
},
"x1e.16xlarge": {
InstanceType: "x1e.16xlarge",
VCPU: 64,
MemoryMb: 1998848,
GPU: 0,
},
"x1e.2xlarge": {
InstanceType: "x1e.2xlarge",
VCPU: 8,
MemoryMb: 249856,
GPU: 0,
},
"x1e.32xlarge": {
InstanceType: "x1e.32xlarge",
VCPU: 128,
MemoryMb: 3997696,
GPU: 0,
},
"x1e.4xlarge": {
InstanceType: "x1e.4xlarge",
VCPU: 16,
MemoryMb: 499712,
GPU: 0,
},
"x1e.8xlarge": {
InstanceType: "x1e.8xlarge",
VCPU: 32,
MemoryMb: 999424,
GPU: 0,
},
"x1e.xlarge": {
InstanceType: "x1e.xlarge",
VCPU: 4,
MemoryMb: 124928,
GPU: 0,
},
}

0 comments on commit d31e65f

Please sign in to comment.