-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_versions.go
70 lines (50 loc) · 1.85 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
63
64
65
66
67
68
69
70
package cmd
import (
"fmt"
"strings"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/pkg/output"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type sksClusterVersionsItemOutput struct {
Version string `json:"version"`
}
type sksClusterVersionsOutput []sksClusterVersionsItemOutput
func (o *sksClusterVersionsOutput) ToJSON() { output.JSON(o) }
func (o *sksClusterVersionsOutput) ToText() { output.Text(o) }
func (o *sksClusterVersionsOutput) ToTable() { output.Table(o) }
type sksVersionsCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ 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(output.TemplateAnnotations(&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(account.CurrentAccount.Environment, c.Zone))
out := make(sksClusterVersionsOutput, 0)
versions, err := globalstate.EgoscaleClient.ListSKSClusterVersions(ctx)
if err != nil {
return err
}
for _, v := range versions {
out = append(out, sksClusterVersionsItemOutput{Version: v})
}
return c.outputFunc(&out, nil)
}
func init() {
cobra.CheckErr(registerCLICommand(sksCmd, &sksVersionsCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}