Skip to content

Commit 63ff09d

Browse files
committed
fix: make helm wait
Signed-off-by: matttrach <matt.trachier@suse.com>
1 parent 0dafad8 commit 63ff09d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

modules/install_rancher/rancher/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ resource "helm_release" "rancher" {
184184
chart = "${local.rancher_helm_repo}/${local.rancher_helm_channel}/rancher-${local.rancher_version}.tgz"
185185
namespace = "cattle-system"
186186
create_namespace = false
187-
wait = false
188-
wait_for_jobs = false
187+
wait = true
188+
wait_for_jobs = true
189189
force_update = true
190190
timeout = 1800 # 30m
191191

modules/install_rancher/rancher_externalTLS/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ resource "helm_release" "rancher" {
212212
chart = "${local.rancher_helm_repo}/${local.rancher_helm_channel}/rancher-${local.rancher_version}.tgz"
213213
namespace = "cattle-system"
214214
create_namespace = false
215-
wait = false
216-
wait_for_jobs = false
215+
wait = true
216+
wait_for_jobs = true
217217
force_update = true
218218
timeout = 1800 # 30m
219219

0 commit comments

Comments
 (0)