diff --git a/cmd/k3d/create.go b/cmd/k3d/create.go index 955a52463..074744e9f 100644 --- a/cmd/k3d/create.go +++ b/cmd/k3d/create.go @@ -1004,9 +1004,11 @@ func runK3d(cmd *cobra.Command, args []string) error { log.Error().Err(err).Msg("") } - err = pkg.OpenBrowser(pkg.ArgoCDLocalURLTLS) - if err != nil { - log.Error().Err(err).Msg("") + if os.Getenv("SKIP_ARGOCD_LAUNCH") != "true" { + err = pkg.OpenBrowser(pkg.ArgoCDLocalURLTLS) + if err != nil { + log.Error().Err(err).Msg("") + } } } diff --git a/internal/launch/constants.go b/internal/launch/constants.go index f6fa66de4..be509df7d 100644 --- a/internal/launch/constants.go +++ b/internal/launch/constants.go @@ -11,7 +11,7 @@ const ( helmChartName = "kubefirst" helmChartRepoName = "kubefirst" helmChartRepoURL = "https://charts.kubefirst.com" - helmChartVersion = "2.3.8-rc44" + helmChartVersion = "2.3.8-rc49" namespace = "kubefirst" secretName = "kubefirst-initial-secrets" )