-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_update.go
92 lines (71 loc) · 2.37 KB
/
instance_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
package cmd
import (
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instanceUpdateCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"update"`
Instance string `cli-arg:"#" cli-usage:"NAME|ID"`
CloudInitFile string `cli-flag:"cloud-init" cli-short:"c" cli-usage:"instance cloud-init user data configuration file path"`
Labels map[string]string `cli-flag:"label" cli-usage:"instance label (format: key=value)"`
Name string `cli-short:"n" cli-usage:"instance name"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instanceUpdateCmd) cmdAliases() []string { return nil }
func (c *instanceUpdateCmd) cmdShort() string { return "Update an Instance " }
func (c *instanceUpdateCmd) cmdLong() string {
return fmt.Sprintf(`This command updates an Instance .
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&instanceShowOutput{}), ", "),
)
}
func (c *instanceUpdateCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instanceUpdateCmd) cmdRun(cmd *cobra.Command, _ []string) error {
var updated bool
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
instance, err := cs.FindInstance(ctx, c.Zone, c.Instance)
if err != nil {
return err
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Labels)) {
instance.Labels = &c.Labels
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.Name)) {
instance.Name = &c.Name
updated = true
}
if cmd.Flags().Changed(mustCLICommandFlagName(c, &c.CloudInitFile)) {
userData, err := getUserDataFromFile(c.CloudInitFile)
if err != nil {
return fmt.Errorf("error parsing cloud-init user data: %s", err)
}
instance.UserData = &userData
updated = true
}
if updated {
decorateAsyncOperation(fmt.Sprintf("Updating instance %q...", c.Instance), func() {
if err = cs.UpdateInstance(ctx, c.Zone, instance); err != nil {
return
}
})
if err != nil {
return err
}
}
if !gQuiet {
return output(showInstance(c.Zone, *instance.ID))
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(computeInstanceCmd, &instanceUpdateCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}