Skip to content

Commit

Permalink
adopt rc42 on the cli for launch up
Browse files Browse the repository at this point in the history
  • Loading branch information
johndietz committed Oct 16, 2023
1 parent 19549e3 commit 4011a29
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
15 changes: 7 additions & 8 deletions cmd/k3d/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import (
"github.com/kubefirst/runtime/configs"
"github.com/kubefirst/runtime/pkg"
"github.com/kubefirst/runtime/pkg/argocd"
"github.com/kubefirst/runtime/pkg/docker"
"github.com/kubefirst/runtime/pkg/gitClient"
"github.com/kubefirst/runtime/pkg/github"
gitlab "github.com/kubefirst/runtime/pkg/gitlab"
Expand Down Expand Up @@ -151,13 +150,13 @@ func runK3d(cmd *cobra.Command, args []string) error {
}

// Verify Docker is running
dcli := docker.DockerClientWrapper{
Client: docker.NewDockerClient(),
}
_, err = dcli.CheckDockerReady()
if err != nil {
return err
}
// dcli := docker.DockerClientWrapper{
// Client: docker.NewDockerClient(),
// }
// _, err = dcli.CheckDockerReady()
// if err != nil {
// return err
// }

// Global context
var ctx context.Context
Expand Down
2 changes: 1 addition & 1 deletion cmd/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func launchUp() *cobra.Command {
Use: "up",
Short: "launch new console and api instance",
TraverseChildren: true,
PreRun: common.CheckDocker,
//PreRun: common.CheckDocker,
Run: func(cmd *cobra.Command, args []string) {
launch.Up(additionalHelmFlags, false, true)
},
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-rc24"
helmChartVersion = "2.3.0-rc42"
namespace = "kubefirst"
secretName = "kubefirst-initial-secrets"
)
4 changes: 2 additions & 2 deletions internal/progress/message.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ func createErrorLog(message string) errorMsg {
// Public Progress Functions
func DisplayLogHints(estimatedTime int) {
logFile := viper.GetString("k1-paths.log-file")
cloudProvider := viper.GetString("kubefirst.cloud-provider")
header := `
##
# Welcome to Kubefirst
### :bulb: To view verbose logs run below command in new terminal:
` + fmt.Sprintf("##### **tail -f -n +1 %s**", logFile) + `
### :blue_book: Documentation: https://docs.kubefirst.io/` + cloudProvider + `/quick-start/install/cli
### :blue_book: Documentation: https://docs.kubefirst.io/
### :family: Community Support: https://kubefirst.io/slack
### :alarm_clock: Estimated time:` + fmt.Sprintf("`%s minutes` \n\n", strconv.Itoa(estimatedTime))

Expand Down

0 comments on commit 4011a29

Please sign in to comment.