Skip to content

Commit

Permalink
Merge pull request #7177 from ceuity/master
Browse files Browse the repository at this point in the history
Add g6e EC2 instance type for AWS
  • Loading branch information
k8s-ci-robot authored Sep 23, 2024
2 parents a403250 + 23b0c78 commit 6670148
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion cluster-autoscaler/cloudprovider/aws/ec2_instance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type InstanceType struct {
}

// StaticListLastUpdateTime is a string declaring the last time the static list was updated.
var StaticListLastUpdateTime = "2024-07-15"
var StaticListLastUpdateTime = "2024-08-16"

// InstanceTypes is a map of ec2 resources
var InstanceTypes = map[string]*InstanceType{
Expand Down Expand Up @@ -1656,6 +1656,62 @@ var InstanceTypes = map[string]*InstanceType{
GPU: 1,
Architecture: "amd64",
},
"g6e.12xlarge": {
InstanceType: "g6e.12xlarge",
VCPU: 48,
MemoryMb: 393216,
GPU: 4,
Architecture: "amd64",
},
"g6e.16xlarge": {
InstanceType: "g6e.16xlarge",
VCPU: 64,
MemoryMb: 524288,
GPU: 1,
Architecture: "amd64",
},
"g6e.24xlarge": {
InstanceType: "g6e.24xlarge",
VCPU: 96,
MemoryMb: 786432,
GPU: 4,
Architecture: "amd64",
},
"g6e.2xlarge": {
InstanceType: "g6e.2xlarge",
VCPU: 8,
MemoryMb: 65536,
GPU: 1,
Architecture: "amd64",
},
"g6e.48xlarge": {
InstanceType: "g6e.48xlarge",
VCPU: 192,
MemoryMb: 1572864,
GPU: 8,
Architecture: "amd64",
},
"g6e.4xlarge": {
InstanceType: "g6e.4xlarge",
VCPU: 16,
MemoryMb: 131072,
GPU: 1,
Architecture: "amd64",
},
"g6e.8xlarge": {
InstanceType: "g6e.8xlarge",
VCPU: 32,
MemoryMb: 262144,
GPU: 1,
Architecture: "amd64",
},
"g6e.xlarge": {
InstanceType: "g6e.xlarge",
VCPU: 4,
MemoryMb: 32768,
GPU: 1,
Architecture: "amd64",
},
"gr6.4xlarge": {
InstanceType: "gr6.4xlarge",
VCPU: 16,
Expand Down

0 comments on commit 6670148

Please sign in to comment.