Skip to content

Commit

Permalink
fix(rancher): AWS - destroy helm_release.cert_manager timeout
Browse files Browse the repository at this point in the history
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: rancher#240

Fixes: rancher#244
  • Loading branch information
wombelix committed Nov 4, 2024
1 parent 11ad74a commit 5ab607c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rancher/rancher-common/helm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5ab607c

Please sign in to comment.