-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_reset.go
115 lines (91 loc) · 3.25 KB
/
instance_reset.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
105
106
107
108
109
110
111
112
113
114
115
package cmd
import (
"fmt"
"strings"
egoscale "github.com/exoscale/egoscale/v2"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instanceResetCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"reset"`
Instance string `cli-arg:"#" cli-usage:"NAME|ID"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
DiskSize int64 `cli-usage:"disk size to reset the instance to (default: current instance disk size)"`
Template string `cli-usage:"template NAME|ID to reset the instance to (default: current instance template)"`
TemplateVisibility string `cli-usage:"instance template visibility (public|private)"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instanceResetCmd) cmdAliases() []string { return nil }
func (c *instanceResetCmd) cmdShort() string { return "Reset a Compute instance" }
func (c *instanceResetCmd) cmdLong() string {
return fmt.Sprintf(`This commands resets a Compute instance to a base template state,
and optionally resizes the instance's disk'.
/!\ **************************************************************** /!\
THIS OPERATION EFFECTIVELY WIPES ALL DATA STORED ON THE INSTANCE'S DISK
/!\ **************************************************************** /!\
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&instanceShowOutput{}), ", "))
}
func (c *instanceResetCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
cmdSetTemplateFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instanceResetCmd) 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 reset instance %q?", c.Instance)) {
return nil
}
}
opts := make([]egoscale.ResetInstanceOpt, 0)
if c.DiskSize > 0 {
opts = append(opts, egoscale.ResetInstanceWithDiskSize(c.DiskSize))
}
var template *egoscale.Template
if c.Template != "" {
templates, err := cs.ListTemplates(
ctx,
c.Zone,
egoscale.ListTemplatesWithVisibility(c.TemplateVisibility),
)
if err != nil {
return fmt.Errorf("error retrieving templates: %w", err)
}
for _, t := range templates {
if *t.ID == c.Template || *t.Name == c.Template {
template = t
break
}
}
if template == nil {
return fmt.Errorf("no template %q found with visibility %s", c.Template, c.TemplateVisibility)
}
opts = append(opts, egoscale.ResetInstanceWithTemplate(template))
}
decorateAsyncOperation(fmt.Sprintf("Resetting instance %q...", c.Instance), func() {
err = cs.ResetInstance(ctx, c.Zone, instance, opts...)
})
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, &instanceResetCmd{
cliCommandSettings: defaultCLICmdSettings(),
TemplateVisibility: defaultTemplateVisibility,
}))
}