From b9c48b603c32f4b1377157f894fb56f2d2f2adee Mon Sep 17 00:00:00 2001 From: Jaskaran Sarkaria Date: Fri, 8 Mar 2024 11:50:12 +0000 Subject: [PATCH] =?UTF-8?q?perf:=20=E2=9A=A1=EF=B8=8F=20bump=20timeout=20(?= =?UTF-8?q?#81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 7aae800..c967626 100644 --- a/main.tf +++ b/main.tf @@ -46,6 +46,7 @@ resource "helm_release" "nginx_ingress" { chart = "ingress-nginx" namespace = "ingress-controllers" repository = "https://kubernetes.github.io/ingress-nginx" + timeout = 600 version = "4.7.3" values = [templatefile("${path.module}/templates/values.yaml.tpl", { @@ -60,8 +61,8 @@ resource "helm_release" "nginx_ingress" { enable_owasp = var.enable_owasp default = var.controller_name == "default" ? true : false name_override = "ingress-${var.controller_name}" - memory_requests = var.memory_requests - memory_limits = var.memory_limits + memory_requests = var.memory_requests + memory_limits = var.memory_limits enable_external_dns_annotation = var.enable_external_dns_annotation backend_repo = var.backend_repo backend_tag = var.backend_tag