Skip to content

Commit

Permalink
rc55 plus improved launch up env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
johndietz committed Oct 23, 2023
1 parent 8dcd21e commit 2d3cb9d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
20 changes: 14 additions & 6 deletions internal/launch/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,19 +362,27 @@ 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",
"kubefirst-api.installMethod=kubefirst-launch",
"global.cloudProvider=k3d",
"--set",
"kubefirst-api.env[0].name=IS_CLUSTER_ZERO",
"global.clusterType=bootstrap",
"--set",
"kubefirst-api.env[0].value='true'",
"global.domainName=kubefirst.dev",
"--set",
"global.installMethod=kubefirst-launch",
"--set",
"global.kubefirstClient=cli",
"--set",
fmt.Sprintf("kubefirst-api.kubefirstTeam=%s", kubefirstTeam),
fmt.Sprintf("global.kubefirstTeam=%s", kubefirstTeam),
"--set",
fmt.Sprintf("kubefirst-api.kubefirstTeamInfo=%s", kubefirstTeamInfo),
fmt.Sprintf("global.kubefirstTeamInfo=%s", kubefirstTeamInfo),
"--set",
fmt.Sprintf("kubefirst-api.useTelemetry=%s", strconv.FormatBool(useTelemetry)),
fmt.Sprintf("global.useTelemetry=%s", strconv.FormatBool(useTelemetry)),
}

if len(additionalHelmFlags) > 0 {
Expand Down
2 changes: 1 addition & 1 deletion internal/launch/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const (
helmChartName = "kubefirst"
helmChartRepoName = "kubefirst"
helmChartRepoURL = "https://charts.kubefirst.com"
helmChartVersion = "2.3.0-rc46"
helmChartVersion = "2.3.0-rc55"
namespace = "kubefirst"
secretName = "kubefirst-initial-secrets"
)

0 comments on commit 2d3cb9d

Please sign in to comment.