From c1cb596e4b4be8b2313de63524c64cdb4ffe413e Mon Sep 17 00:00:00 2001 From: Ranjith M P <92041707+r1jt@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:05:40 +0530 Subject: [PATCH] Update helm_utils.go Signed-off-by: Ranjith M P <92041707+r1jt@users.noreply.github.com> --- apps/helm_utils.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/helm_utils.go b/apps/helm_utils.go index f504f914..209b091d 100644 --- a/apps/helm_utils.go +++ b/apps/helm_utils.go @@ -6,6 +6,8 @@ import ( "os/exec" "strings" "io/ioutil" + "github.com/openebs/openebs-e2e/common" + "github.com/openebs/openebs-e2e/common/e2e_config" logf "sigs.k8s.io/controller-runtime/pkg/log" ) @@ -224,9 +226,9 @@ func UmbrellaUpgrade(isPartialRebuildDisableNeeded bool) (string, error) { // apps.UpgradeHelmChartfromValues(e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), values, TestLog, version) - apps.GetHelmValues(e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), oldValues) + GetHelmValues(e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), oldValues) - apps.UpgradeHelmChartfromValues(e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), values, oldValues, e2e_config.GetConfig().ImageTag) + UpgradeHelmChartfromValues(e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), values, oldValues, e2e_config.GetConfig().ImageTag) return stderr.String(), nil }