From 2c4dcd813045c05537c114f17b57f9d333c42fd8 Mon Sep 17 00:00:00 2001 From: John Dietz Date: Thu, 8 Jun 2023 20:26:56 -0400 Subject: [PATCH] adopt helm chart 2.1.0 (#1594) * adopt helm chart 2.1.0 * feat: kubefirst version for console --------- Co-authored-by: CristhianF7 --- cmd/launch.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/launch.go b/cmd/launch.go index 6e24dadd6..131897e4b 100644 --- a/cmd/launch.go +++ b/cmd/launch.go @@ -14,6 +14,7 @@ import ( "github.com/kubefirst/kubefirst/internal/helm" k3dint "github.com/kubefirst/kubefirst/internal/k3d" + "github.com/kubefirst/runtime/configs" "github.com/kubefirst/runtime/pkg" "github.com/kubefirst/runtime/pkg/downloadManager" "github.com/kubefirst/runtime/pkg/helpers" @@ -35,7 +36,7 @@ const ( helmChartName = "kubefirst" helmChartRepoName = "kubefirst" helmChartRepoURL = "https://charts.kubefirst.com" - helmChartVersion = "0.0.30" + helmChartVersion = "2.1.0" namespace = "kubefirst" secretName = "kubefirst-initial-secrets" ) @@ -325,6 +326,8 @@ func launchUp() *cobra.Command { "--set", "console.ingress.createTraefikRoute=true", "--set", + fmt.Sprintf("console.chartVersion=%s", configs.K1Version), + "--set", "kubefirst-api.installMethod=kubefirst-launch", }