Skip to content

Commit

Permalink
feat: move digitial ocean out of beta
Browse files Browse the repository at this point in the history
  • Loading branch information
CristhianF7 committed Dec 11, 2023
1 parent 1b3b3f8 commit d25ec0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions cmd/beta.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -34,7 +33,6 @@ var betaCmd = &cobra.Command{
func init() {
cobra.OnInitialize()
betaCmd.AddCommand(
digitalocean.NewCommand(),
google.NewCommand(),
vultr.NewCommand(),
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/digitalocean/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 2 additions & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -61,6 +62,7 @@ func init() {
betaCmd,
aws.NewCommand(),
civo.NewCommand(),
digitalocean.NewCommand(),
k3d.NewCommand(),
k3d.LocalCommandAlias(),
LaunchCommand(),
Expand Down

0 comments on commit d25ec0d

Please sign in to comment.