From ddf1641168bdce928e1128acce4d994979ad03cc Mon Sep 17 00:00:00 2001 From: bijayasharma Date: Thu, 18 Mar 2021 10:23:40 -0400 Subject: [PATCH] Modify airshipctl cluster status cmd * This commits modifies airshipctl cluster status cmd to return not implemented error Change-Id: I7a9fea382217f4eb3d9903b6575f9df5d331255d Signed-off-by: bijayasharma Relates-To: #370 Closes: #370 --- cmd/cluster/status.go | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/cmd/cluster/status.go b/cmd/cluster/status.go index b8b91427e..6e2230734 100644 --- a/cmd/cluster/status.go +++ b/cmd/cluster/status.go @@ -17,9 +17,8 @@ package cluster import ( "github.com/spf13/cobra" - "opendev.org/airship/airshipctl/pkg/cluster" "opendev.org/airship/airshipctl/pkg/config" - "opendev.org/airship/airshipctl/pkg/k8s/client" + "opendev.org/airship/airshipctl/pkg/errors" ) // NewStatusCommand creates a command which reports the statuses of a cluster's deployed components. @@ -28,7 +27,7 @@ func NewStatusCommand(cfgFactory config.Factory) *cobra.Command { statusCmd := &cobra.Command{ Use: "status", Short: "Retrieve statuses of deployed cluster components", - RunE: clusterStatusRunE(cfgFactory, kubeconfig), + RunE: clusterStatusRunE, } statusCmd.Flags().StringVar( @@ -40,8 +39,6 @@ func NewStatusCommand(cfgFactory config.Factory) *cobra.Command { return statusCmd } -func clusterStatusRunE(cfgFactory config.Factory, kubeconfig string) func(cmd *cobra.Command, args []string) error { - return func(cmd *cobra.Command, args []string) error { - return cluster.StatusRunner(cluster.NewStatusOptions(cfgFactory, client.DefaultClient, kubeconfig), cmd.OutOrStdout()) - } +func clusterStatusRunE(cmd *cobra.Command, args []string) error { + return errors.ErrNotImplemented{What: "Cluster Status"} }