Skip to content

Commit

Permalink
Merge pull request #11 from truefoundry/reducing-max-count
Browse files Browse the repository at this point in the history
Reducing max count of the aks node pool to support kubenet CNI
  • Loading branch information
dunefro authored May 2, 2024
2 parents e444a28 + 9456099 commit b7f151f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ locals {
node_pools = merge({ for k, v in local.cpupools : "${v["name"]}sp" => {
name = "${v["name"]}sp"
node_count = 0
max_count = 20
max_count = 10
min_count = 0
os_disk_size_gb = 100
priority = "Spot"
Expand All @@ -91,7 +91,7 @@ locals {
{ for k, v in local.gpupools : "${v["name"]}sp" => {
name = "${v["name"]}sp"
node_count = 0
max_count = 20
max_count = 5
min_count = 0
os_disk_size_gb = 100
priority = "Spot"
Expand All @@ -114,7 +114,7 @@ locals {
{ for k, v in local.gpupools : "${v["name"]}" => {
name = "${v["name"]}"
node_count = 0
max_count = 20
max_count = 5
min_count = 0
os_disk_size_gb = 100
priority = "Regular"
Expand Down

0 comments on commit b7f151f

Please sign in to comment.