-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_resizedisk.go
75 lines (57 loc) · 1.92 KB
/
instance_resizedisk.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
package cmd
import (
"fmt"
"strings"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instanceResizeDiskCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"resize-disk"`
Instance string `cli-arg:"#" cli-usage:"NAME|ID"`
Size int64 `cli-arg:"#"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instanceResizeDiskCmd) cmdAliases() []string { return nil }
func (c *instanceResizeDiskCmd) cmdShort() string { return "Resize a Compute instance disk" }
func (c *instanceResizeDiskCmd) cmdLong() string {
return fmt.Sprintf(`This commands grows a Compute instance's disk to a larger size.'
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&instanceShowOutput{}), ", "))
}
func (c *instanceResizeDiskCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instanceResizeDiskCmd) cmdRun(_ *cobra.Command, _ []string) error {
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 !c.Force {
if !askQuestion(fmt.Sprintf("Are you sure you want to resize the disk of instance %q?", c.Instance)) {
return nil
}
}
decorateAsyncOperation(fmt.Sprintf("Resizing disk of instance %q...", c.Instance), func() {
err = cs.ResizeInstanceDisk(ctx, c.Zone, instance, c.Size)
})
if err != nil {
return err
}
if !gQuiet {
return (&instanceShowCmd{
cliCommandSettings: c.cliCommandSettings,
Instance: *instance.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(instanceCmd, &instanceResizeDiskCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}