Skip to content

Commit

Permalink
Update helm_utils.go
Browse files Browse the repository at this point in the history
Signed-off-by: Ranjith M P <[email protected]>
  • Loading branch information
r1jt committed Oct 23, 2024
1 parent edd8f56 commit c1cb596
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apps/helm_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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
}

0 comments on commit c1cb596

Please sign in to comment.