From 0da5610d55afd6f6f4eb21429c0545c0f36cac6d Mon Sep 17 00:00:00 2001 From: John Dietz Date: Mon, 30 Oct 2023 19:20:08 -0400 Subject: [PATCH] fix: 1879 - launch up can depend on api default for isClusterZero (#1880) * fix: 1879 - launch up can lean on default isClusterZero opinion * adopt 2.3.4 --- internal/launch/cmd.go | 4 ---- internal/launch/constants.go | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/internal/launch/cmd.go b/internal/launch/cmd.go index df523be15..716ece703 100644 --- a/internal/launch/cmd.go +++ b/internal/launch/cmd.go @@ -362,10 +362,6 @@ func Up(additionalHelmFlags []string, inCluster bool, useTelemetry bool) { "--set", "console.ingress.createTraefikRoute=true", "--set", - "kubefirst-api.env[0].name=IS_CLUSTER_ZERO", - "--set", - "kubefirst-api.env[0].value='true'", - "--set", fmt.Sprintf("global.kubefirstVersion=%s", configs.K1Version), "--set", "global.cloudProvider=k3d", diff --git a/internal/launch/constants.go b/internal/launch/constants.go index bf16fee86..ad6af0d9a 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.3" + helmChartVersion = "2.3.4" namespace = "kubefirst" secretName = "kubefirst-initial-secrets" )