From 1be3ec5e52c0370da5709e0c8be0ff2fe764f841 Mon Sep 17 00:00:00 2001 From: mrrishi Date: Tue, 24 Dec 2024 04:02:26 +0530 Subject: [PATCH] remove vultr and google out of beta --- cmd/beta.go | 4 ---- cmd/root.go | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/beta.go b/cmd/beta.go index e5154206c..0fdd51af0 100644 --- a/cmd/beta.go +++ b/cmd/beta.go @@ -11,9 +11,7 @@ import ( "github.com/konstructio/kubefirst/cmd/akamai" "github.com/konstructio/kubefirst/cmd/azure" - "github.com/konstructio/kubefirst/cmd/google" "github.com/konstructio/kubefirst/cmd/k3s" - "github.com/konstructio/kubefirst/cmd/vultr" "github.com/konstructio/kubefirst/internal/progress" "github.com/spf13/cobra" ) @@ -39,7 +37,5 @@ func init() { akamai.NewCommand(), azure.NewCommand(), k3s.NewCommand(), - google.NewCommand(), - vultr.NewCommand(), ) } diff --git a/cmd/root.go b/cmd/root.go index 3a9b40591..7f31362a6 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -14,7 +14,9 @@ import ( "github.com/konstructio/kubefirst/cmd/aws" "github.com/konstructio/kubefirst/cmd/civo" "github.com/konstructio/kubefirst/cmd/digitalocean" + "github.com/konstructio/kubefirst/cmd/google" "github.com/konstructio/kubefirst/cmd/k3d" + "github.com/konstructio/kubefirst/cmd/vultr" "github.com/konstructio/kubefirst/internal/common" "github.com/konstructio/kubefirst/internal/progress" "github.com/spf13/cobra" @@ -64,6 +66,8 @@ func init() { digitalocean.NewCommand(), k3d.NewCommand(), k3d.LocalCommandAlias(), + google.NewCommand(), + vultr.NewCommand(), LaunchCommand(), LetsEncryptCommand(), TerraformCommand(),