From d25ec0ddab4d9f255a0f1ea36f16a7f9ae0b746c Mon Sep 17 00:00:00 2001 From: CristhianF7 Date: Mon, 11 Dec 2023 16:57:44 -0500 Subject: [PATCH] feat: move digitial ocean out of beta --- cmd/beta.go | 2 -- cmd/digitalocean/command.go | 2 +- cmd/root.go | 2 ++ 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/beta.go b/cmd/beta.go index 74cef5164..6833ab11c 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/vultr" "github.com/kubefirst/kubefirst/internal/progress" @@ -34,7 +33,6 @@ var betaCmd = &cobra.Command{ func init() { cobra.OnInitialize() betaCmd.AddCommand( - digitalocean.NewCommand(), google.NewCommand(), vultr.NewCommand(), ) diff --git a/cmd/digitalocean/command.go b/cmd/digitalocean/command.go index 11ce01eba..9fba7e829 100644 --- a/cmd/digitalocean/command.go +++ b/cmd/digitalocean/command.go @@ -54,7 +54,7 @@ func NewCommand() *cobra.Command { Long: "kubefirst digitalocean", Run: func(cmd *cobra.Command, args []string) { fmt.Println("To learn more about digital ocean in kubefirst, run:") - fmt.Println(" kubefirst beta digitalocean --help") + fmt.Println(" kubefirst digitalocean --help") if progress.Progress != nil { progress.Progress.Quit() diff --git a/cmd/root.go b/cmd/root.go index 943ece3c8..b85fbad8d 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -12,6 +12,7 @@ import ( "github.com/kubefirst/kubefirst/cmd/aws" "github.com/kubefirst/kubefirst/cmd/civo" + "github.com/kubefirst/kubefirst/cmd/digitalocean" "github.com/kubefirst/kubefirst/cmd/k3d" "github.com/kubefirst/kubefirst/internal/common" "github.com/kubefirst/kubefirst/internal/progress" @@ -61,6 +62,7 @@ func init() { betaCmd, aws.NewCommand(), civo.NewCommand(), + digitalocean.NewCommand(), k3d.NewCommand(), k3d.LocalCommandAlias(), LaunchCommand(),