-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_list.go
89 lines (73 loc) · 2.03 KB
/
sks_list.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package cmd
import (
"fmt"
"os"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type sksClusterListItemOutput struct {
ID string `json:"id"`
Name string `json:"name"`
Zone string `json:"zone"`
}
type sksClusterListOutput []sksClusterListItemOutput
func (o *sksClusterListOutput) toJSON() { outputJSON(o) }
func (o *sksClusterListOutput) toText() { outputText(o) }
func (o *sksClusterListOutput) toTable() { outputTable(o) }
var sksListCmd = &cobra.Command{
Use: "list",
Short: "List SKS clusters",
Long: fmt.Sprintf(`This command lists SKS clusters.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&sksClusterListItemOutput{}), ", ")),
Aliases: gListAlias,
RunE: func(cmd *cobra.Command, args []string) error {
zone, err := cmd.Flags().GetString("zone")
if err != nil {
return err
}
zone = strings.ToLower(zone)
return output(listSKSClusters(zone), nil)
},
}
func listSKSClusters(zone string) outputter {
var sksClusterZones []string
if zone != "" {
sksClusterZones = []string{zone}
} else {
sksClusterZones = allZones
}
out := make(sksClusterListOutput, 0)
res := make(chan sksClusterListItemOutput)
defer close(res)
go func() {
for cluster := range res {
out = append(out, cluster)
}
}()
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, zone))
err := forEachZone(sksClusterZones, func(zone string) error {
list, err := cs.ListSKSClusters(ctx, zone)
if err != nil {
return fmt.Errorf("unable to list SKS clusters in zone %s: %v", zone, err)
}
for _, cluster := range list {
res <- sksClusterListItemOutput{
ID: cluster.ID,
Name: cluster.Name,
Zone: zone,
}
}
return nil
})
if err != nil {
_, _ = fmt.Fprintf(os.Stderr,
"warning: errors during listing, results might be incomplete.\n%s\n", err) // nolint:golint
}
return &out
}
func init() {
sksListCmd.Flags().StringP("zone", "z", "", "Zone to filter results to")
sksCmd.AddCommand(sksListCmd)
}