-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_pool_evict.go
82 lines (64 loc) · 2.1 KB
/
instance_pool_evict.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
package cmd
import (
"fmt"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type instancePoolEvictCmd struct {
_ bool `cli-cmd:"evict"`
InstancePool string `cli-arg:"#" cli-usage:"INSTANCE-POOL-NAME|ID"`
Instances []string `cli-arg:"*" cli-usage:"INSTANCE-NAME|ID"`
Force bool `cli-short:"f" cli-usage:"don't prompt for confirmation"`
Zone string `cli-short:"z" cli-usage:"Instance Pool zone"`
}
func (c *instancePoolEvictCmd) cmdAliases() []string { return nil }
func (c *instancePoolEvictCmd) cmdShort() string { return "Evict Instance Pool members" }
func (c *instancePoolEvictCmd) cmdLong() string {
return `This command evicts specific members from an Instance Pool, effectively
scaling down the Instance Pool similar to the "exo instancepool scale" command.`
}
func (c *instancePoolEvictCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instancePoolEvictCmd) cmdRun(cmd *cobra.Command, _ []string) error {
if len(c.Instances) == 0 {
cmdExitOnUsageError(cmd, "no instances specified")
}
if !c.Force {
if !askQuestion(fmt.Sprintf(
"Are you sure you want to evict %v from Instance Pool %q?",
c.Instances,
c.InstancePool,
)) {
return nil
}
}
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
instancePool, err := cs.FindInstancePool(ctx, c.Zone, c.InstancePool)
if err != nil {
return err
}
instances := make([]string, len(c.Instances))
for i, n := range c.Instances {
instance, err := cs.FindInstance(ctx, c.Zone, n)
if err != nil {
return fmt.Errorf("invalid instance %q: %s", n, err)
}
instances[i] = *instance.ID
}
decorateAsyncOperation(
fmt.Sprintf("Evicting instances from Instance Pool %q...", c.InstancePool),
func() { err = instancePool.EvictMembers(ctx, instances) },
)
if err != nil {
return err
}
if !gQuiet {
return output(showInstancePool(c.Zone, *instancePool.ID))
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(instancePoolCmd, &instancePoolEvictCmd{}))
}