-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_pool_delete.go
75 lines (62 loc) · 1.55 KB
/
instance_pool_delete.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"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
var instancePoolDeleteCmd = &cobra.Command{
Use: "delete <name | id>+",
Short: "Delete an instance pool",
Aliases: gDeleteAlias,
PreRunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 1 {
cmdExitOnUsageError(cmd, "invalid arguments")
}
cmdSetZoneFlagFromDefault(cmd)
return cmdCheckRequiredFlags(cmd, []string{"zone"})
},
RunE: func(cmd *cobra.Command, args []string) error {
force, err := cmd.Flags().GetBool("force")
if err != nil {
return err
}
zoneName, err := cmd.Flags().GetString("zone")
if err != nil {
return err
}
zone, err := getZoneByName(zoneName)
if err != nil {
return err
}
tasks := make([]task, 0, len(args))
for _, arg := range args {
if !force {
if !askQuestion(fmt.Sprintf("sure you want to delete %q", arg)) {
continue
}
}
i, err := getInstancePoolByName(arg, zone.ID)
if err != nil {
return err
}
tasks = append(tasks, task{
egoscale.DestroyInstancePool{
ID: i.ID,
ZoneID: zone.ID,
},
fmt.Sprintf("Deleting instance pool %q", args[0]),
})
}
r := asyncTasks(tasks)
errs := filterErrors(r)
if len(errs) > 0 {
return errs[0]
}
return nil
},
}
func init() {
instancePoolDeleteCmd.Flags().StringP("zone", "z", "", "Instance pool zone")
instancePoolDeleteCmd.Flags().BoolP("force", "f", false, "Attempt to remove instance pool without prompting for confirmation")
instancePoolCmd.AddCommand(instancePoolDeleteCmd)
}