-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_update.go
104 lines (81 loc) · 2.76 KB
/
sks_update.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
104
package cmd
import (
"errors"
"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 sksUpdateCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"update"`
Cluster string `cli-arg:"#" cli-usage:"NAME|ID"`
AutoUpgrade bool `cli-usage:"enable automatic upgrading of the SKS cluster control plane Kubernetes version(--auto-upgrade=false to disable again)"`
Description string `cli-usage:"SKS cluster description"`
Labels map[string]string `cli-flag:"label" cli-usage:"SKS cluster label (format: key=value)"`
Name string `cli-usage:"SKS cluster name"`
Zone string `cli-short:"z" cli-usage:"SKS cluster zone"`
}
func (c *sksUpdateCmd) cmdAliases() []string { return nil }
func (c *sksUpdateCmd) cmdShort() string { return "Update an SKS cluster" }
func (c *sksUpdateCmd) cmdLong() string {
return fmt.Sprintf(`This command updates an SKS cluster.
Supported output template annotations: %s`,
strings.Join(output.TemplateAnnotations(&sksShowOutput{}), ", "),
)
}
func (c *sksUpdateCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *sksUpdateCmd) cmdRun(cmd *cobra.Command, _ []string) error {
var updated bool
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
cluster, err := globalstate.EgoscaleClient.FindSKSCluster(ctx, c.Zone, c.Cluster)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.AutoUpgrade)) {
cluster.AutoUpgrade = &c.AutoUpgrade
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Labels)) {
cluster.Labels = &c.Labels
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Name)) {
cluster.Name = &c.Name
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Description)) {
cluster.Description = &c.Description
updated = true
}
if updated {
decorateAsyncOperation(fmt.Sprintf("Updating SKS cluster %q...", c.Cluster), func() {
err = globalstate.EgoscaleClient.UpdateSKSCluster(ctx, c.Zone, cluster)
})
if err != nil {
return err
}
}
if !globalstate.Quiet {
return (&sksShowCmd{
cliCommandSettings: c.cliCommandSettings,
Cluster: *cluster.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(sksCmd, &sksUpdateCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}