Skip to content

Commit

Permalink
Merge pull request #5529 from mmcclean-aws/master
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 Mar 8, 2023
2 parents 205293a + fdfd4e6 commit a553eb8
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 @@ -1614,6 +1614,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 a553eb8

Please sign in to comment.