-
Notifications
You must be signed in to change notification settings - Fork 20
/
eip_associate.go
64 lines (53 loc) · 1.33 KB
/
eip_associate.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
package cmd
import (
"fmt"
"net"
"github.com/exoscale/egoscale"
"github.com/spf13/cobra"
)
var eipAssociateCmd = &cobra.Command{
Use: "associate IP-ADDRESS INSTANCE-NAME|ID",
Short: "Associate an Elastic IP to a Compute instance",
Aliases: gAssociateAlias,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) < 2 {
return cmd.Usage()
}
tasks := make([]task, 0, len(args[1:]))
ipaddr := args[0]
ip := net.ParseIP(ipaddr)
if ip == nil {
return fmt.Errorf("invalid IP address %q", ipaddr)
}
for _, arg := range args[1:] {
vm, err := getVirtualMachineByNameOrID(arg)
if err != nil {
return err
}
cmd, err := prepareAssociateIP(vm, ip)
if err != nil {
return err
}
tasks = append(tasks, task{
cmd,
fmt.Sprintf("Associating Elastic IP %s to %s", cmd.IPAddress.String(), vm.Name),
})
}
resps := asyncTasks(tasks)
errs := filterErrors(resps)
if len(errs) > 0 {
return errs[0]
}
return nil
},
}
func prepareAssociateIP(vm *egoscale.VirtualMachine, ip net.IP) (*egoscale.AddIPToNic, error) {
defaultNic := vm.DefaultNic()
if defaultNic == nil {
return nil, fmt.Errorf("the Compute instance %q has no default NIC", vm.ID)
}
return &egoscale.AddIPToNic{NicID: defaultNic.ID, IPAddress: ip}, nil
}
func init() {
eipCmd.AddCommand(eipAssociateCmd)
}