/* Copyright © 2020 The k3d Author(s) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package get import ( "context" "fmt" "os" "strings" k3cluster "github.com/rancher/k3d/pkg/cluster" "github.com/rancher/k3d/pkg/runtimes" k3d "github.com/rancher/k3d/pkg/types" "github.com/spf13/cobra" log "github.com/sirupsen/logrus" "github.com/liggitt/tabwriter" ) // TODO : deal with --all flag to manage differentiate started cluster and stopped cluster like `docker ps` and `docker ps -a` type clusterFlags struct { noHeader bool token bool } // NewCmdGetCluster returns a new cobra command func NewCmdGetCluster() *cobra.Command { clusterFlags := clusterFlags{} // create new command cmd := &cobra.Command{ Use: "cluster [NAME [NAME...]]", Aliases: []string{"clusters"}, Short: "Get cluster(s)", Long: `Get cluster(s).`, Run: func(cmd *cobra.Command, args []string) { clusters := buildClusterList(cmd.Context(), args) PrintClusters(clusters, clusterFlags) }, ValidArgsFunction: validArgsFunc, } // add flags cmd.Flags().BoolVar(&clusterFlags.noHeader, "no-headers", false, "Disable headers") cmd.Flags().BoolVar(&clusterFlags.token, "token", false, "Print k3s cluster token") // add subcommands // done return cmd } // validArgsFunc is used for shell completion: proposes the list of existing clusters func validArgsFunc(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) { var completions []string var clusters []*k3d.Cluster clusters, err := k3cluster.GetClusters(context.Background(), runtimes.SelectedRuntime) if err != nil { log.Errorln("Failed to get list of clusters for shell completion") return nil, cobra.ShellCompDirectiveError } clusterLoop: for _, cluster := range clusters { for _, arg := range args { if arg == cluster.Name { // only clusters, that are not in the args yet continue clusterLoop } } if strings.HasPrefix(cluster.Name, toComplete) { completions = append(completions, cluster.Name) } } return completions, cobra.ShellCompDirectiveDefault } func buildClusterList(ctx context.Context, args []string) []*k3d.Cluster { var clusters []*k3d.Cluster var err error if len(args) == 0 { // cluster name not specified : get all clusters clusters, err = k3cluster.GetClusters(ctx, runtimes.SelectedRuntime) if err != nil { log.Fatalln(err) } } else { for _, clusterName := range args { // cluster name specified : get specific cluster retrievedCluster, err := k3cluster.GetCluster(ctx, runtimes.SelectedRuntime, &k3d.Cluster{Name: clusterName}) if err != nil { log.Fatalln(err) } clusters = append(clusters, retrievedCluster) } } return clusters } // PrintPrintClusters : display list of cluster func PrintClusters(clusters []*k3d.Cluster, flags clusterFlags) { tabwriter := tabwriter.NewWriter(os.Stdout, 6, 4, 3, ' ', tabwriter.RememberWidths) defer tabwriter.Flush() if !flags.noHeader { headers := []string{"NAME", "MASTERS", "WORKERS"} // TODO: getCluster: add status column if flags.token { headers = append(headers, "TOKEN") } _, err := fmt.Fprintf(tabwriter, "%s\n", strings.Join(headers, "\t")) if err != nil { log.Fatalln("Failed to print headers") } } k3cluster.SortClusters(clusters) for _, cluster := range clusters { masterCount := cluster.MasterCount() workerCount := cluster.WorkerCount() if flags.token { fmt.Fprintf(tabwriter, "%s\t%d\t%d\t%s\n", cluster.Name, masterCount, workerCount, cluster.Token) } else { fmt.Fprintf(tabwriter, "%s\t%d\t%d\n", cluster.Name, masterCount, workerCount) } } }