Skip to content

Commit

Permalink
Add suppport for m6a, m7i, m6in, m5zn families; also correct hugepage…
Browse files Browse the repository at this point in the history
… allocation for cloud router use cases on 2xlarge instances
  • Loading branch information
Jon moon committed Mar 12, 2024
1 parent 0bbb8a0 commit 03e5ae0
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions modules/aws/node-props/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ locals {
"cloud-router" = {
"m5.2xlarge" = {
cpuset = "2-3"
hugepages_gb = 4
hugepages_gb = 6
}

"m5n.2xlarge" = {
cpuset = "2-3"
hugepages_gb = 4
hugepages_gb = 6
}

"m5.24xlarge" = {
Expand All @@ -35,6 +35,27 @@ locals {
"m5n.16xlarge",
"m5n.24xlarge",
]

m5zn = [
"m5zn.12xlarge",
]

m6in = [
# m6in.16xlarge is confirmed single NUMA (different from m5n family)
"m6in.24xlarge",
"m6in.32xlarge",
]

m6a = [
# m6a.24xlarge" confirmed as single NUMA
"m6a.32xlarge",
"m6a.48xlarge",
]

m7i = [
# m7in.24xlarge confirmed as single NUMA
"m7in.48xlarge",
]
}
}

Expand Down

0 comments on commit 03e5ae0

Please sign in to comment.