-
Notifications
You must be signed in to change notification settings - Fork 20
/
instance_private_network_attach.go
98 lines (78 loc) · 2.75 KB
/
instance_private_network_attach.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
package cmd
import (
"errors"
"fmt"
"net"
"strings"
"github.com/spf13/cobra"
"github.com/exoscale/cli/pkg/account"
"github.com/exoscale/cli/pkg/globalstate"
"github.com/exoscale/cli/pkg/output"
egoscale "github.com/exoscale/egoscale/v2"
exoapi "github.com/exoscale/egoscale/v2/api"
)
type instancePrivnetAttachCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"attach"`
Instance string `cli-arg:"#" cli-usage:"INSTANCE-NAME|ID"`
PrivateNetwork string `cli-arg:"#" cli-usage:"PRIVATE-NETWORK-NAME|ID"`
IPAddress string `cli-flag:"ip" cli-usage:"network IP address to assign to the Compute instance (managed Private Networks only)"`
Zone string `cli-short:"z" cli-usage:"instance zone"`
}
func (c *instancePrivnetAttachCmd) cmdAliases() []string { return nil }
func (c *instancePrivnetAttachCmd) cmdShort() string {
return "Attach a Compute instance to a Private Network"
}
func (c *instancePrivnetAttachCmd) cmdLong() string {
return fmt.Sprintf(`This command attaches a Compute instance to a Private Network.
Supported output template annotations: %s`,
strings.Join(output.TemplateAnnotations(&instanceShowOutput{}), ", "),
)
}
func (c *instancePrivnetAttachCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *instancePrivnetAttachCmd) cmdRun(_ *cobra.Command, _ []string) error {
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(account.CurrentAccount.Environment, c.Zone))
instance, err := globalstate.EgoscaleClient.FindInstance(ctx, c.Zone, c.Instance)
if err != nil {
if errors.Is(err, exoapi.ErrNotFound) {
return fmt.Errorf("resource not found in zone %q", c.Zone)
}
return err
}
privateNetwork, err := globalstate.EgoscaleClient.FindPrivateNetwork(ctx, c.Zone, c.PrivateNetwork)
if err != nil {
return fmt.Errorf("error retrieving Private Network: %w", err)
}
opts := make([]egoscale.AttachInstanceToPrivateNetworkOpt, 0)
if c.IPAddress != "" {
opts = append(opts, egoscale.AttachInstanceToPrivateNetworkWithIPAddress(net.ParseIP(c.IPAddress)))
}
decorateAsyncOperation(fmt.Sprintf(
"Attaching instance %q to Private Network %q...",
c.Instance,
c.PrivateNetwork,
), func() {
if err = globalstate.EgoscaleClient.AttachInstanceToPrivateNetwork(ctx, c.Zone, instance, privateNetwork, opts...); err != nil {
return
}
})
if err != nil {
return err
}
if !globalstate.Quiet {
return (&instanceShowCmd{
cliCommandSettings: c.cliCommandSettings,
Instance: *instance.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(instancePrivnetCmd, &instancePrivnetAttachCmd{
cliCommandSettings: defaultCLICmdSettings(),
}))
}