From 0f42428e97a5d575310410952535190c361ee92a Mon Sep 17 00:00:00 2001 From: Justin Brooks Date: Thu, 10 Feb 2022 16:44:29 -0500 Subject: [PATCH] fix: Increased desired pod count to match min capacity (#11) --- modules/app_eks/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/app_eks/main.tf b/modules/app_eks/main.tf index 71dc3770c..b01d8129d 100644 --- a/modules/app_eks/main.tf +++ b/modules/app_eks/main.tf @@ -119,7 +119,7 @@ module "eks" { node_groups = { primary = { - desired_capacity = 1, + desired_capacity = 2, max_capacity = 5, min_capacity = 2, instance_type = ["m5.xlarge"],