Skip to content

Commit

Permalink
Merge pull request #5721 from ff-apple/aws_1.26
Browse files Browse the repository at this point in the history
Added support for AWS inf2 instance types
  • Loading branch information
k8s-ci-robot authored May 2, 2023
2 parents 6657ca5 + e4d153a commit af57282
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1607,6 +1607,34 @@ var InstanceTypes = map[string]*InstanceType{
GPU: 0,
Architecture: "amd64",
},
"inf2.48xlarge": {
InstanceType: "inf2.48xlarge",
VCPU: 192,
MemoryMb: 786432,
GPU: 0,
Architecture: "amd64",
},
"inf2.24xlarge": {
InstanceType: "inf2.24xlarge",
VCPU: 96,
MemoryMb: 393216,
GPU: 0,
Architecture: "amd64",
},
"inf2.8xlarge": {
InstanceType: "inf2.8xlarge",
VCPU: 32,
MemoryMb: 131072,
GPU: 0,
Architecture: "amd64",
},
"inf2.xlarge": {
InstanceType: "inf2.xlarge",
VCPU: 4,
MemoryMb: 16384,
GPU: 0,
Architecture: "amd64",
},
"is4gen.2xlarge": {
InstanceType: "is4gen.2xlarge",
VCPU: 8,
Expand Down

0 comments on commit af57282

Please sign in to comment.