diff --git a/cmd/cluster/clusterStart.go b/cmd/cluster/clusterStart.go index f9f9c516..0bab822c 100644 --- a/cmd/cluster/clusterStart.go +++ b/cmd/cluster/clusterStart.go @@ -42,7 +42,7 @@ func NewCmdClusterStart() *cobra.Command { // create new command cmd := &cobra.Command{ - Use: "cluster (NAME [NAME...] | --all)", + Use: "start (NAME [NAME...] | --all)", Short: "Start existing k3d cluster(s)", Long: `Start existing k3d cluster(s)`, ValidArgsFunction: util.ValidArgsAvailableClusters, diff --git a/cmd/cluster/clusterStop.go b/cmd/cluster/clusterStop.go index 2da206d7..2c805150 100644 --- a/cmd/cluster/clusterStop.go +++ b/cmd/cluster/clusterStop.go @@ -37,7 +37,7 @@ func NewCmdClusterStop() *cobra.Command { // create new command cmd := &cobra.Command{ - Use: "cluster (NAME [NAME...] | --all)", + Use: "stop (NAME [NAME...] | --all)", Short: "Stop an existing k3d cluster", Long: `Stop an existing k3d cluster.`, ValidArgsFunction: util.ValidArgsAvailableClusters, diff --git a/cmd/node/nodeList.go b/cmd/node/nodeList.go index 18afae6a..6c1e6ce9 100644 --- a/cmd/node/nodeList.go +++ b/cmd/node/nodeList.go @@ -43,7 +43,7 @@ func NewCmdNodeList() *cobra.Command { // create new command cmd := &cobra.Command{ Use: "list [NAME [NAME...]]", - Aliases: []string{"ls"}, + Aliases: []string{"ls", "get"}, Short: "List node(s)", Long: `List node(s).`, Args: cobra.MinimumNArgs(0), // 0 or more; 0 = all