-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathvpc.go
167 lines (141 loc) · 5.02 KB
/
vpc.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
/*
Copyright 2024 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cloud
import (
"strings"
infrav1 "sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta3"
"github.com/apache/cloudstack-go/v2/cloudstack"
"github.com/pkg/errors"
)
// ResourceTypeVPC is the type identifier for VPC resources.
const (
ResourceTypeVPC = "Vpc"
VPCOffering = "Default VPC offering"
)
// VPCIface defines the interface for VPC operations.
type VPCIface interface {
ResolveVPC(*infrav1.VPC) error
CreateVPC(*infrav1.CloudStackFailureDomain, *infrav1.VPC) error
RemoveClusterTagFromVPC(*infrav1.CloudStackCluster, infrav1.VPC) error
DeleteVPCIfNotInUse(infrav1.VPC) (retError error)
}
// getVPCOfferingID fetches a vpc offering id.
func (c *client) getVPCOfferingID(offeringName string) (string, error) {
offeringID, count, retErr := c.cs.VPC.GetVPCOfferingID(offeringName)
if retErr != nil {
c.customMetrics.EvaluateErrorAndIncrementAcsReconciliationErrorCounter(retErr)
return "", retErr
} else if count != 1 {
return "", errors.New("found more than one vpc offering")
}
return offeringID, nil
}
// ResolveVPC checks if the specified VPC exists by ID or name.
// If it exists, it updates the VPC struct with the resolved ID or name.
func (c *client) ResolveVPC(vpc *infrav1.VPC) error {
if vpc == nil || (vpc.ID == "" && vpc.Name == "") {
return nil
}
// If VPC ID is provided, check if it exists
if vpc.ID != "" {
resp, count, err := c.cs.VPC.GetVPCByID(vpc.ID, cloudstack.WithProject(c.user.Project.ID))
if err != nil {
c.customMetrics.EvaluateErrorAndIncrementAcsReconciliationErrorCounter(err)
return errors.Wrapf(err, "failed to get VPC with ID %s", vpc.ID)
}
if count == 0 {
return errors.Errorf("no VPC found with ID %s", vpc.ID)
}
vpc.Name = resp.Name
vpc.CIDR = resp.Cidr
vpc.Offering = resp.Vpcofferingname
return nil
}
// If VPC name is provided, check if it exists
resp, count, err := c.cs.VPC.GetVPCByName(vpc.Name, cloudstack.WithProject(c.user.Project.ID))
if err != nil {
c.customMetrics.EvaluateErrorAndIncrementAcsReconciliationErrorCounter(err)
return errors.Wrapf(err, "failed to get VPC with name %s", vpc.Name)
}
if count == 0 {
return errors.Errorf("no VPC found with name %s", vpc.Name)
}
vpc.ID = resp.Id
vpc.CIDR = resp.Cidr
vpc.Offering = resp.Vpcofferingname
return nil
}
// CreateVPC creates a new VPC in CloudStack.
func (c *client) CreateVPC(fd *infrav1.CloudStackFailureDomain, vpc *infrav1.VPC) error {
if vpc == nil || vpc.Name == "" {
return errors.New("VPC name must be specified")
}
offeringName := VPCOffering
if vpc.Offering != "" {
offeringName = vpc.Offering
}
offeringID, err := c.getVPCOfferingID(offeringName)
if err != nil {
return err
}
p := c.cs.VPC.NewCreateVPCParams(vpc.CIDR, vpc.Name, vpc.Name, offeringID, fd.Spec.Zone.ID)
setIfNotEmpty(c.user.Project.ID, p.SetProjectid)
p.SetStart(true)
resp, err := c.cs.VPC.CreateVPC(p)
if err != nil {
c.customMetrics.EvaluateErrorAndIncrementAcsReconciliationErrorCounter(err)
return errors.Wrapf(err, "creating VPC with name %s", vpc.Name)
}
vpc.ID = resp.Id
return c.AddCreatedByCAPCTag(ResourceTypeVPC, vpc.ID)
}
// DeleteVPC deletes a VPC.
func (c *client) DeleteVPC(vpc infrav1.VPC) error {
_, err := c.cs.VPC.DeleteVPC(c.cs.VPC.NewDeleteVPCParams(vpc.ID))
c.customMetrics.EvaluateErrorAndIncrementAcsReconciliationErrorCounter(err)
return errors.Wrapf(err, "deleting vpc with id %s", vpc.ID)
}
// DeleteVPCIfNotInUse deletes a VPC if the VPC is no longer in use (indicated by in use tags).
func (c *client) DeleteVPCIfNotInUse(vpc infrav1.VPC) (retError error) {
tags, err := c.GetTags(ResourceTypeVPC, vpc.ID)
if err != nil {
return err
}
var clusterTagCount int
for tagName := range tags {
if strings.HasPrefix(tagName, ClusterTagNamePrefix) {
clusterTagCount++
}
}
if clusterTagCount == 0 && tags[CreatedByCAPCTagName] != "" {
return c.DeleteVPC(vpc)
}
return nil
}
func generateVPCTagName(csCluster *infrav1.CloudStackCluster) string {
return ClusterTagNamePrefix + string(csCluster.UID)
}
// RemoveClusterTagFromVPC removes the cluster in use tag from a VPC.
func (c *client) RemoveClusterTagFromVPC(csCluster *infrav1.CloudStackCluster, vpc infrav1.VPC) (retError error) {
tags, err := c.GetTags(ResourceTypeVPC, vpc.ID)
if err != nil {
return err
}
ClusterTagName := generateVPCTagName(csCluster)
if tagValue := tags[ClusterTagName]; tagValue != "" {
if err = c.DeleteTags(ResourceTypeVPC, vpc.ID, map[string]string{ClusterTagName: tagValue}); err != nil {
return err
}
}
return nil
}