Skip to content

Commit

Permalink
add launch up
Browse files Browse the repository at this point in the history
  • Loading branch information
jarededwards committed Mar 13, 2024
1 parent e1238a5 commit aae55ad
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cmd/akamai/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/kubefirst/kubefirst/internal/catalog"
"github.com/kubefirst/kubefirst/internal/cluster"
"github.com/kubefirst/kubefirst/internal/gitShim"
"github.com/kubefirst/kubefirst/internal/launch"
"github.com/kubefirst/kubefirst/internal/progress"
"github.com/kubefirst/kubefirst/internal/provision"
"github.com/kubefirst/kubefirst/internal/utilities"
Expand Down Expand Up @@ -75,10 +76,10 @@ func createAkamai(cmd *cobra.Command, args []string) error {
viper.Set(fmt.Sprintf("kubefirst-checks.%s-credentials", cliFlags.GitProvider), true)
viper.WriteConfig()

// k3dClusterCreationComplete := viper.GetBool("launch.deployed")
// if !k3dClusterCreationComplete {
// launch.Up(nil, true, cliFlags.UseTelemetry)
// }
k3dClusterCreationComplete := viper.GetBool("launch.deployed")
if !k3dClusterCreationComplete {
launch.Up(nil, true, cliFlags.UseTelemetry)
}

err = pkg.IsAppAvailable(fmt.Sprintf("%s/api/proxyHealth", cluster.GetConsoleIngresUrl()), "kubefirst api")
if err != nil {
Expand Down

0 comments on commit aae55ad

Please sign in to comment.