diff --git a/cmd/beta.go b/cmd/beta.go index 27747b69f..2bf670435 100644 --- a/cmd/beta.go +++ b/cmd/beta.go @@ -9,7 +9,6 @@ package cmd import ( "fmt" - "github.com/kubefirst/kubefirst/cmd/digitalocean" "github.com/kubefirst/kubefirst/cmd/google" "github.com/kubefirst/kubefirst/cmd/k3s" "github.com/kubefirst/kubefirst/cmd/vultr" @@ -35,7 +34,6 @@ var betaCmd = &cobra.Command{ func init() { cobra.OnInitialize() betaCmd.AddCommand( - digitalocean.NewCommand(), k3s.NewCommand(), google.NewCommand(), vultr.NewCommand(), diff --git a/internal/utilities/utilities.go b/internal/utilities/utilities.go index f6aa79f58..e5f21d937 100644 --- a/internal/utilities/utilities.go +++ b/internal/utilities/utilities.go @@ -107,9 +107,6 @@ func CreateClusterRecordFromRaw(useTelemetry bool, gitOwner string, gitUser stri cl.DigitaloceanAuth.SpacesSecret = os.Getenv("DO_SPACES_SECRET") case "vultr": cl.VultrAuth.Token = os.Getenv("VULTR_API_KEY") - case "k3s": - // TODO: waht is the purpose of this? - log.Info().Msgf("do i passed in here 2?") } cl.StateStoreCredentials.AccessKeyID = viper.GetString("kubefirst.state-store-creds.access-key-id")