From 9456099db339c9dff1c5cfaa23ad481f6e54d60a Mon Sep 17 00:00:00 2001 From: Vedant Pareek Date: Thu, 2 May 2024 11:57:24 +0530 Subject: [PATCH] Reducing max count of the aks node pool to support kubenet CNI --- locals.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/locals.tf b/locals.tf index e38d884..c562c67 100644 --- a/locals.tf +++ b/locals.tf @@ -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" @@ -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" @@ -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"