From 5ab607cb83ca18466f456c3bbaa9a8c88898fb84 Mon Sep 17 00:00:00 2001 From: Dominik Wombacher Date: Mon, 4 Nov 2024 16:22:31 +0000 Subject: [PATCH] fix(rancher): AWS - destroy helm_release.cert_manager timeout Resource 'module.rancher_common.helm_release.cert_manager' runs into 5m timeout during destroy with cert-manager >=1.15.0 because of CRD resource policy Refs: https://github.com/rancher/quickstart/pull/240 Fixes: https://github.com/rancher/quickstart/issues/244 --- rancher/rancher-common/helm.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rancher/rancher-common/helm.tf b/rancher/rancher-common/helm.tf index c6d1cbb6..91df0c75 100644 --- a/rancher/rancher-common/helm.tf +++ b/rancher/rancher-common/helm.tf @@ -6,7 +6,7 @@ resource "helm_release" "cert_manager" { chart = "https://charts.jetstack.io/charts/cert-manager-v${var.cert_manager_version}.tgz" namespace = "cert-manager" create_namespace = true - wait = true + wait = false set { name = "installCRDs"