-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_versions.go
62 lines (44 loc) · 1.61 KB
/
sks_versions.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
package cmd
import (
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type sksClusterVersionsItemOutput struct {
Version string `json:"version"`
}
type sksClusterVersionsOutput []sksClusterVersionsItemOutput
func (o *sksClusterVersionsOutput) toJSON() { outputJSON(o) }
func (o *sksClusterVersionsOutput) toText() { outputText(o) }
func (o *sksClusterVersionsOutput) toTable() { outputTable(o) }
type sksVersionsCmd struct {
_ bool `cli-cmd:"versions"`
Zone string `cli-short:"z" cli-usage:"zone to filter results to"`
}
func (c *sksVersionsCmd) cmdAliases() []string { return gListAlias }
func (c *sksVersionsCmd) cmdShort() string { return "List supported SKS cluster versions" }
func (c *sksVersionsCmd) cmdLong() string {
return fmt.Sprintf(`This command lists supported SKS cluster versions.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&sksClusterVersionsItemOutput{}), ", "))
}
func (c *sksVersionsCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *sksVersionsCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
out := make(sksClusterVersionsOutput, 0)
versions, err := cs.ListSKSClusterVersions(ctx)
if err != nil {
return err
}
for _, v := range versions {
out = append(out, sksClusterVersionsItemOutput{Version: v})
}
return output(&out, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(sksCmd, &sksVersionsCmd{}))
}