From c816caa695e1569f83071544d9e98133f42649b5 Mon Sep 17 00:00:00 2001 From: John Dietz Date: Thu, 14 Dec 2023 00:14:10 -0500 Subject: [PATCH] 2.3.7 update (#1958) --- internal/launch/cmd.go | 1 + internal/launch/constants.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/launch/cmd.go b/internal/launch/cmd.go index 2acf0f15a..40c823839 100644 --- a/internal/launch/cmd.go +++ b/internal/launch/cmd.go @@ -498,6 +498,7 @@ func Up(additionalHelmFlags []string, inCluster bool, useTelemetry bool) { if err != nil { progress.Error(fmt.Sprintf("error creating kubernetes secret for cert: %s", err)) } + time.Sleep(5 * time.Second) log.Info().Msg("Created Kubernetes Secret for certificate") } diff --git a/internal/launch/constants.go b/internal/launch/constants.go index a63882449..27bfb9143 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.6" + helmChartVersion = "2.3.7" namespace = "kubefirst" secretName = "kubefirst-initial-secrets" )