Skip to content

Commit

Permalink
Merge pull request #3794 from shamil/patch-2
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

Add support for C5 instance family

AWS [released](https://aws.amazon.com/blogs/aws/now-available-compute-intensive-c5-instances-for-amazon-ec2) 5th generation of Compute oriented EC2 series. This PR adds support for them.
  • Loading branch information
Kubernetes Submit Queue authored Nov 10, 2017
2 parents d61f62f + a99844f commit aab07e3
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions upup/pkg/fi/cloudup/awsup/machine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,50 @@ var MachineTypes []AWSMachineTypeInfo = []AWSMachineTypeInfo{
EphemeralDisks: nil,
},

// c5 family
{
Name: "c5.large",
MemoryGB: 4,
ECU: 8,
Cores: 2,
EphemeralDisks: nil,
},
{
Name: "c5.xlarge",
MemoryGB: 8,
ECU: 16,
Cores: 4,
EphemeralDisks: nil,
},
{
Name: "c5.2xlarge",
MemoryGB: 16,
ECU: 31,
Cores: 8,
EphemeralDisks: nil,
},
{
Name: "c5.4xlarge",
MemoryGB: 32,
ECU: 62,
Cores: 16,
EphemeralDisks: nil,
},
{
Name: "c5.9xlarge",
MemoryGB: 72,
ECU: 139,
Cores: 36,
EphemeralDisks: nil,
},
{
Name: "c5.18xlarge",
MemoryGB: 144,
ECU: 278,
Cores: 72,
EphemeralDisks: nil,
},

// cc2 family
{
Name: "cc2.8xlarge",
Expand Down

0 comments on commit aab07e3

Please sign in to comment.