-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_nodepool_list.go
103 lines (81 loc) · 2.49 KB
/
sks_nodepool_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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package cmd
import (
"fmt"
"os"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type sksNodepoolListItemOutput struct {
ID string `json:"id"`
Name string `json:"name"`
Cluster string `json:"cluster"`
Size int64 `json:"size"`
State string `json:"state"`
Zone string `json:"zone"`
}
type sksNodepoolListOutput []sksNodepoolListItemOutput
func (o *sksNodepoolListOutput) toJSON() { outputJSON(o) }
func (o *sksNodepoolListOutput) toText() { outputText(o) }
func (o *sksNodepoolListOutput) toTable() { outputTable(o) }
type sksNodepoolListCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"list"`
Zone string `cli-short:"z" cli-usage:"zone to filter results to"`
}
func (c *sksNodepoolListCmd) cmdAliases() []string { return gListAlias }
func (c *sksNodepoolListCmd) cmdShort() string { return "List SKS cluster Nodepools" }
func (c *sksNodepoolListCmd) cmdLong() string {
return fmt.Sprintf(`This command lists SKS cluster Nodepools.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&sksNodepoolListItemOutput{}), ", "))
}
func (c *sksNodepoolListCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *sksNodepoolListCmd) cmdRun(_ *cobra.Command, _ []string) error {
var zones []string
if c.Zone != "" {
zones = []string{c.Zone}
} else {
zones = allZones
}
out := make(sksNodepoolListOutput, 0)
res := make(chan sksNodepoolListItemOutput)
defer close(res)
go func() {
for cluster := range res {
out = append(out, cluster)
}
}()
err := forEachZone(zones, func(zone string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, zone))
list, err := cs.ListSKSClusters(ctx, zone)
if err != nil {
return fmt.Errorf("unable to list SKS clusters in zone %s: %w", zone, err)
}
for _, cluster := range list {
for _, np := range cluster.Nodepools {
res <- sksNodepoolListItemOutput{
ID: *np.ID,
Name: *np.Name,
Cluster: *cluster.Name,
Size: *np.Size,
State: *np.State,
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 c.outputFunc(&out, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(sksNodepoolCmd, &sksNodepoolListCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}