-
Notifications
You must be signed in to change notification settings - Fork 20
/
sks_nodepool_add.go
176 lines (150 loc) · 5.53 KB
/
sks_nodepool_add.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package cmd
import (
"fmt"
"strings"
egoscale "github.com/exoscale/egoscale/v2"
exoapi "github.com/exoscale/egoscale/v2/api"
"github.com/spf13/cobra"
)
type sksNodepoolAddCmd struct {
cliCommandSettings `cli-cmd:"-"`
_ bool `cli-cmd:"add"`
Cluster string `cli-arg:"#" cli-usage:"CLUSTER-NAME|ID"`
Name string `cli-arg:"#" cli-usage:"NODEPOOL-NAME"`
AntiAffinityGroups []string `cli-flag:"anti-affinity-group" cli-usage:"Nodepool Anti-Affinity Group NAME|ID (can be specified multiple times)"`
DeployTarget string `cli-usage:"Nodepool Deploy Target NAME|ID"`
Description string `cli-usage:"Nodepool description"`
DiskSize int64 `cli-usage:"Nodepool Compute instances disk size"`
InstancePrefix string `cli-usage:"string to prefix Nodepool member names with"`
InstanceType string `cli-usage:"Nodepool Compute instances type"`
Labels []string `cli-flag:"label" cli-usage:"Nodepool label (format: key=value)"`
PrivateNetworks []string `cli-flag:"private-network" cli-usage:"Nodepool Private Network NAME|ID (can be specified multiple times)"`
SecurityGroups []string `cli-flag:"security-group" cli-usage:"Nodepool Security Group NAME|ID (can be specified multiple times)"`
Size int64 `cli-usage:"Nodepool size"`
Taints []string `cli-flag:"taint" cli-usage:"Kubernetes taint to apply to Nodepool Nodes (format: KEY=VALUE:EFFECT, can be specified multiple times)"`
Zone string `cli-short:"z" cli-usage:"SKS cluster zone"`
}
func (c *sksNodepoolAddCmd) cmdAliases() []string { return nil }
func (c *sksNodepoolAddCmd) cmdShort() string { return "Add a Nodepool to an SKS cluster" }
func (c *sksNodepoolAddCmd) cmdLong() string {
return fmt.Sprintf(`This command adds a Nodepool to an SKS cluster.
Supported output template annotations: %s`,
strings.Join(outputterTemplateAnnotations(&sksNodepoolShowOutput{}), ", "))
}
func (c *sksNodepoolAddCmd) cmdPreRun(cmd *cobra.Command, args []string) error {
cmdSetZoneFlagFromDefault(cmd)
return cliCommandDefaultPreRun(c, cmd, args)
}
func (c *sksNodepoolAddCmd) cmdRun(_ *cobra.Command, _ []string) error {
nodepool := &egoscale.SKSNodepool{
Description: func() (v *string) {
if c.Description != "" {
v = &c.Description
}
return
}(),
DiskSize: &c.DiskSize,
InstancePrefix: func() (v *string) {
if c.InstancePrefix != "" {
v = &c.InstancePrefix
}
return
}(),
Name: &c.Name,
Size: &c.Size,
}
ctx := exoapi.WithEndpoint(gContext, exoapi.NewReqEndpoint(gCurrentAccount.Environment, c.Zone))
cluster, err := cs.FindSKSCluster(ctx, c.Zone, c.Cluster)
if err != nil {
return fmt.Errorf("error retrieving cluster: %w", err)
}
if l := len(c.AntiAffinityGroups); l > 0 {
nodepoolAntiAffinityGroupIDs := make([]string, l)
for i := range c.AntiAffinityGroups {
antiAffinityGroup, err := cs.FindAntiAffinityGroup(ctx, c.Zone, c.AntiAffinityGroups[i])
if err != nil {
return fmt.Errorf("error retrieving Anti-Affinity Group: %w", err)
}
nodepoolAntiAffinityGroupIDs[i] = *antiAffinityGroup.ID
}
nodepool.AntiAffinityGroupIDs = &nodepoolAntiAffinityGroupIDs
}
if c.DeployTarget != "" {
deployTarget, err := cs.FindDeployTarget(ctx, c.Zone, c.DeployTarget)
if err != nil {
return fmt.Errorf("error retrieving Deploy Target: %w", err)
}
nodepool.DeployTargetID = deployTarget.ID
}
nodepoolInstanceType, err := cs.FindInstanceType(ctx, c.Zone, c.InstanceType)
if err != nil {
return fmt.Errorf("error retrieving instance type: %w", err)
}
nodepool.InstanceTypeID = nodepoolInstanceType.ID
if len(c.Labels) > 0 {
labels := make(map[string]string)
if len(c.Labels) > 0 {
labels, err = sliceToMap(c.Labels)
if err != nil {
return fmt.Errorf("label: %w", err)
}
}
nodepool.Labels = &labels
}
if l := len(c.PrivateNetworks); l > 0 {
nodepoolPrivateNetworkIDs := make([]string, l)
for i := range c.PrivateNetworks {
privateNetwork, err := cs.FindPrivateNetwork(ctx, c.Zone, c.PrivateNetworks[i])
if err != nil {
return fmt.Errorf("error retrieving Private Network: %w", err)
}
nodepoolPrivateNetworkIDs[i] = *privateNetwork.ID
}
nodepool.PrivateNetworkIDs = &nodepoolPrivateNetworkIDs
}
if l := len(c.SecurityGroups); l > 0 {
nodepoolSecurityGroupIDs := make([]string, l)
for i := range c.SecurityGroups {
securityGroup, err := cs.FindSecurityGroup(ctx, c.Zone, c.SecurityGroups[i])
if err != nil {
return fmt.Errorf("error retrieving Security Group: %w", err)
}
nodepoolSecurityGroupIDs[i] = *securityGroup.ID
}
nodepool.SecurityGroupIDs = &nodepoolSecurityGroupIDs
}
if len(c.Taints) > 0 {
taints := make(map[string]*egoscale.SKSNodepoolTaint)
for _, t := range c.Taints {
key, taint, err := parseSKSNodepoolTaint(t)
if err != nil {
return fmt.Errorf("invalid taint value %q: %w", t, err)
}
taints[key] = taint
}
nodepool.Taints = &taints
}
decorateAsyncOperation(fmt.Sprintf("Adding Nodepool %q...", *nodepool.Name), func() {
nodepool, err = cs.CreateSKSNodepool(ctx, c.Zone, cluster, nodepool)
})
if err != nil {
return err
}
if !gQuiet {
return (&sksNodepoolShowCmd{
cliCommandSettings: c.cliCommandSettings,
Cluster: *cluster.ID,
Nodepool: *nodepool.ID,
Zone: c.Zone,
}).cmdRun(nil, nil)
}
return nil
}
func init() {
cobra.CheckErr(registerCLICommand(sksNodepoolCmd, &sksNodepoolAddCmd{
cliCommandSettings: defaultCLICmdSettings(),
Size: 2,
InstanceType: defaultServiceOffering,
DiskSize: 50,
}))
}