Loading go-apps/meep-virt-engine/helm/install.go +4 −1 Original line number Diff line number Diff line Loading @@ -64,6 +64,7 @@ func install(chart Chart) error { if strings.Trim(chart.ValuesFile, " ") == "" { codecovLocation := strings.TrimSpace(os.Getenv("MEEP_CODECOV_LOCATION")) + chart.ReleaseName codecovEnabled := strings.TrimSpace(os.Getenv("MEEP_CODECOV")) onboardedappLocation := strings.TrimSpace(os.Getenv("MEEP_ONBOARDEDAPP_LOCATION")) + chart.ReleaseName cmd = exec.Command("helm", "install", chart.ReleaseName, "--namespace", chart.Namespace, "--create-namespace", "--set", "nameOverride="+chart.Name, Loading @@ -71,7 +72,9 @@ func install(chart Chart) error { chart.Location, "--replace", "--disable-openapi-validation", "--set", "codecov.enabled="+codecovEnabled, "--set", "codecov.location="+codecovLocation, "--set", "image.env.MEEP_CODECOV="+codecovEnabled) "--set", "image.env.MEEP_CODECOV="+codecovEnabled, "--set", "onboardedapp.enabled="+strings.TrimSpace(os.Getenv("MEEP_ONBOARDEDAPP")), "--set", "onboardedapp.location="+onboardedappLocation) } else { cmd = exec.Command("helm", "install", chart.ReleaseName, "--namespace", chart.Namespace, "--create-namespace", Loading Loading
go-apps/meep-virt-engine/helm/install.go +4 −1 Original line number Diff line number Diff line Loading @@ -64,6 +64,7 @@ func install(chart Chart) error { if strings.Trim(chart.ValuesFile, " ") == "" { codecovLocation := strings.TrimSpace(os.Getenv("MEEP_CODECOV_LOCATION")) + chart.ReleaseName codecovEnabled := strings.TrimSpace(os.Getenv("MEEP_CODECOV")) onboardedappLocation := strings.TrimSpace(os.Getenv("MEEP_ONBOARDEDAPP_LOCATION")) + chart.ReleaseName cmd = exec.Command("helm", "install", chart.ReleaseName, "--namespace", chart.Namespace, "--create-namespace", "--set", "nameOverride="+chart.Name, Loading @@ -71,7 +72,9 @@ func install(chart Chart) error { chart.Location, "--replace", "--disable-openapi-validation", "--set", "codecov.enabled="+codecovEnabled, "--set", "codecov.location="+codecovLocation, "--set", "image.env.MEEP_CODECOV="+codecovEnabled) "--set", "image.env.MEEP_CODECOV="+codecovEnabled, "--set", "onboardedapp.enabled="+strings.TrimSpace(os.Getenv("MEEP_ONBOARDEDAPP")), "--set", "onboardedapp.location="+onboardedappLocation) } else { cmd = exec.Command("helm", "install", chart.ReleaseName, "--namespace", chart.Namespace, "--create-namespace", Loading