From 526c2101ac5fd29a3c9529e87fb618d43b5205e4 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Sat, 24 Jun 2023 00:36:43 +0200 Subject: [PATCH] chore(helm): Uninstall tooling because upgrade the chart is flaky (#1375) Signed-off-by: rjshrjndrn --- scripts/helmcharts/init.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/helmcharts/init.sh b/scripts/helmcharts/init.sh index afe81c981..99589dd8c 100644 --- a/scripts/helmcharts/init.sh +++ b/scripts/helmcharts/init.sh @@ -145,6 +145,7 @@ function set_permissions() { ## Installing OpenReplay function install_openreplay() { info "installing toolings" + helm uninstall tooling -n app || true helm upgrade --install toolings ./toolings -n app --create-namespace --wait -f ./vars.yaml --atomic --debug ${HELM_OPTIONS} info "installing databases" helm upgrade --install databases ./databases -n db --create-namespace --wait -f ./vars.yaml --atomic --debug ${HELM_OPTIONS}