Skip to content

Commit

Permalink
Merge pull request #3715 from dvavili/p3-support
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue.

Updates for p3 machine type

Adding support for P3 instances on AWS
  • Loading branch information
Kubernetes Submit Queue authored Oct 28, 2017
2 parents 4162ae1 + b4bb1c9 commit e38f2a5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions upup/pkg/fi/cloudup/awsup/machine_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,32 @@ var MachineTypes []AWSMachineTypeInfo = []AWSMachineTypeInfo{
GPU: true,
},

// p3 family
{
Name: "p3.2xlarge",
MemoryGB: 61,
ECU: 23.5,
Cores: 8,
EphemeralDisks: nil,
GPU: true,
},
{
Name: "p3.8xlarge",
MemoryGB: 244,
ECU: 94,
Cores: 32,
EphemeralDisks: nil,
GPU: true,
},
{
Name: "p3.16xlarge",
MemoryGB: 488,
ECU: 188,
Cores: 64,
EphemeralDisks: nil,
GPU: true,
},

// g3 family
{
Name: "g3.4xlarge",
Expand Down

0 comments on commit e38f2a5

Please sign in to comment.