From 3c9bcff8c6956f2ef3f386173411717cf689f77e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Heleno?= Date: Mon, 21 Oct 2024 16:30:37 +0200 Subject: [PATCH] fix(aks)!: remove hardcoded resources and replicas --- aks/locals.tf | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/aks/locals.tf b/aks/locals.tf index 13dfff0..d671d43 100644 --- a/aks/locals.tf +++ b/aks/locals.tf @@ -44,42 +44,6 @@ locals { "azure.workload.identity/client-id" = azurerm_user_assigned_identity.cert_manager.client_id } } - replicaCount = 2 - resources = { - limits = { - memory = "128Mi" - } - requests = { - cpu = "10m" - memory = "32Mi" - } - } - - webhook = { - replicaCount = 2 - resources = { - limits = { - memory = "64Mi" - } - requests = { - cpu = "10m" - memory = "32Mi" - } - } - } - - cainjector = { - replicaCount = 2 - resources = { - limits = { - memory = "128Mi" - } - requests = { - cpu = "10m" - memory = "32Mi" - } - } - } } # This structure will be merged with the one with the same name on the root locals.tf.