Skip to content

Commit

Permalink
chore: test without provisioning
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianF7 committed Aug 2, 2024
1 parent fc550b6 commit fb8a109
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions cmd/civo/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ import (
"strings"

utils "github.com/kubefirst/kubefirst-api/pkg/utils"
"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"
"github.com/spf13/cobra"
"github.com/spf13/viper"
Expand All @@ -32,10 +30,10 @@ func createCivo(cmd *cobra.Command, args []string) error {

progress.DisplayLogHints(15)

isValid, catalogApps, err := catalog.ValidateCatalogApps(cliFlags.InstallCatalogApps)
if !isValid {
return err
}
// isValid, catalogApps, err := catalog.ValidateCatalogApps(cliFlags.InstallCatalogApps)
// if !isValid {
// return err
// }

err = ValidateProvidedFlags(cliFlags.GitProvider)
if err != nil {
Expand Down Expand Up @@ -89,7 +87,7 @@ func createCivo(cmd *cobra.Command, args []string) error {
progress.Error("unable to start kubefirst api")
}

provision.CreateMgmtCluster(gitAuth, cliFlags, catalogApps)
// provision.CreateMgmtCluster(gitAuth, cliFlags, catalogApps)

return nil
}
Expand Down

0 comments on commit fb8a109

Please sign in to comment.