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 94cc1ef commit 234dd0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/helm_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func UpgradeHelmChartfromValues(helmChart, namespace, releaseName string, values
return nil
}

func UmbrellaUpgrade(isPartialRebuildDisableNeeded bool) (string, error) {
func UmbrellaUpgrade(isPartialRebuildDisableNeeded bool) error {
logDir, ok := os.LookupEnv("e2etestlogdir")
if !ok {
logDir = "/tmp/e2e/logs"
Expand All @@ -231,5 +231,5 @@ func UmbrellaUpgrade(isPartialRebuildDisableNeeded bool) (string, error) {

UpgradeHelmChartfromValues("mayastor/openebs",e2e_config.GetConfig().Product.HelmReleaseName, common.NSMayastor(), values, oldValues, e2e_config.GetConfig().ImageTag)

return stderr.String(), nil
return nil
}

0 comments on commit 234dd0c

Please sign in to comment.