Skip to content

Commit

Permalink
fix: update constants (#982)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoonoh authored Jan 17, 2025
1 parent 80f8375 commit f003cca
Show file tree
Hide file tree
Showing 3 changed files with 156 additions and 146 deletions.
4 changes: 4 additions & 0 deletions src/constants/ec2-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ export const ec2Info: Record<_InstanceType | string, Ec2InstanceInfo> = {
'c7gn.medium': { vCpu: 1, memoryGiB: 2, architectures: ['arm64'] },
'c7gn.metal': { vCpu: 64, memoryGiB: 128, architectures: ['arm64'] },
'c7gn.xlarge': { vCpu: 4, memoryGiB: 8, architectures: ['arm64'] },
'c7i-flex.12xlarge': { vCpu: 48, memoryGiB: 96, architectures: ['x86_64'] },
'c7i-flex.16xlarge': { vCpu: 64, memoryGiB: 128, architectures: ['x86_64'] },
'c7i-flex.2xlarge': { vCpu: 8, memoryGiB: 16, architectures: ['x86_64'] },
'c7i-flex.4xlarge': { vCpu: 16, memoryGiB: 32, architectures: ['x86_64'] },
'c7i-flex.8xlarge': { vCpu: 32, memoryGiB: 64, architectures: ['x86_64'] },
Expand Down Expand Up @@ -526,6 +528,8 @@ export const ec2Info: Record<_InstanceType | string, Ec2InstanceInfo> = {
'm7gd.medium': { vCpu: 1, memoryGiB: 4, architectures: ['arm64'] },
'm7gd.metal': { vCpu: 64, memoryGiB: 256, architectures: ['arm64'] },
'm7gd.xlarge': { vCpu: 4, memoryGiB: 16, architectures: ['arm64'] },
'm7i-flex.12xlarge': { vCpu: 48, memoryGiB: 192, architectures: ['x86_64'] },
'm7i-flex.16xlarge': { vCpu: 64, memoryGiB: 256, architectures: ['x86_64'] },
'm7i-flex.2xlarge': { vCpu: 8, memoryGiB: 32, architectures: ['x86_64'] },
'm7i-flex.4xlarge': { vCpu: 16, memoryGiB: 64, architectures: ['x86_64'] },
'm7i-flex.8xlarge': { vCpu: 32, memoryGiB: 128, architectures: ['x86_64'] },
Expand Down
4 changes: 4 additions & 0 deletions src/constants/ec2-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@ export const allInstances = [
'm7i-flex.2xlarge',
'm7i-flex.4xlarge',
'm7i-flex.8xlarge',
'm7i-flex.12xlarge',
'm7i-flex.16xlarge',
'm8g.medium',
'm8g.large',
'm8g.xlarge',
Expand Down Expand Up @@ -632,6 +634,8 @@ export const allInstances = [
'c7i-flex.2xlarge',
'c7i-flex.4xlarge',
'c7i-flex.8xlarge',
'c7i-flex.12xlarge',
'c7i-flex.16xlarge',
'c8g.medium',
'c8g.large',
'c8g.xlarge',
Expand Down
Loading

0 comments on commit f003cca

Please sign in to comment.