-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathvpc.go
More file actions
136 lines (113 loc) · 4.12 KB
/
vpc.go
File metadata and controls
136 lines (113 loc) · 4.12 KB
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
/*
Copyright 2023 Akamai Technologies, Inc.
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 scope
import (
"context"
"errors"
"fmt"
clusterv1 "sigs.k8s.io/cluster-api/api/core/v1beta2"
"sigs.k8s.io/cluster-api/util/patch"
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
infrav1alpha2 "github.com/linode/cluster-api-provider-linode/api/v1alpha2"
"github.com/linode/cluster-api-provider-linode/clients"
)
// VPCScope defines the basic context for an actuator to operate upon.
type VPCScope struct {
Client clients.K8sClient
PatchHelper *patch.Helper
LinodeClient clients.LinodeClient
LinodeVPC *infrav1alpha2.LinodeVPC
Cluster *clusterv1.Cluster
}
// VPCScopeParams defines the input parameters used to create a new Scope.
type VPCScopeParams struct {
Client clients.K8sClient
LinodeVPC *infrav1alpha2.LinodeVPC
Cluster *clusterv1.Cluster
}
func validateVPCScopeParams(params VPCScopeParams) error {
if params.LinodeVPC == nil {
return errors.New("linodeVPC is required when creating a VPCScope")
}
return nil
}
// NewVPCScope creates a new Scope from the supplied parameters.
// This is meant to be called for each reconcile iteration.
//
//nolint:dupl // this is the same as PlacementGroups - worth making into generics later.
func NewVPCScope(ctx context.Context, linodeClientConfig ClientConfig, params VPCScopeParams) (*VPCScope, error) {
if err := validateVPCScopeParams(params); err != nil {
return nil, err
}
linodeClient, err := CreateLinodeClient(linodeClientConfig,
WithRetryCount(0),
)
if err != nil {
return nil, fmt.Errorf("failed to create linode client: %w", err)
}
helper, err := patch.NewHelper(params.LinodeVPC, params.Client)
if err != nil {
return nil, fmt.Errorf("failed to init patch helper: %w", err)
}
return &VPCScope{
Client: params.Client,
LinodeClient: linodeClient,
LinodeVPC: params.LinodeVPC,
PatchHelper: helper,
Cluster: params.Cluster,
}, nil
}
// PatchObject persists the machine configuration and status.
func (s *VPCScope) PatchObject(ctx context.Context) error {
return s.PatchHelper.Patch(ctx, s.LinodeVPC)
}
// Close closes the current scope persisting the machine configuration and status.
func (s *VPCScope) Close(ctx context.Context) error {
return s.PatchObject(ctx)
}
// AddFinalizer adds a finalizer if not present and immediately patches the
// object to avoid any race conditions.
func (s *VPCScope) AddFinalizer(ctx context.Context) error {
if controllerutil.AddFinalizer(s.LinodeVPC, infrav1alpha2.VPCFinalizer) {
return s.Close(ctx)
}
return nil
}
func (s *VPCScope) AddCredentialsRefFinalizer(ctx context.Context) error {
if s.LinodeVPC.Spec.CredentialsRef == nil {
return nil
}
return addCredentialsFinalizer(ctx, s.Client,
*s.LinodeVPC.Spec.CredentialsRef, s.LinodeVPC.GetNamespace(),
toFinalizer(s.LinodeVPC))
}
func (s *VPCScope) RemoveCredentialsRefFinalizer(ctx context.Context) error {
if s.LinodeVPC.Spec.CredentialsRef == nil {
return nil
}
return removeCredentialsFinalizer(ctx, s.Client,
*s.LinodeVPC.Spec.CredentialsRef, s.LinodeVPC.GetNamespace(),
toFinalizer(s.LinodeVPC))
}
func (s *VPCScope) SetCredentialRefTokenForLinodeClients(ctx context.Context) error {
if s.LinodeVPC.Spec.CredentialsRef != nil {
// TODO: This key is hard-coded (for now) to match the externally-managed `manager-credentials` Secret.
apiToken, err := getCredentialDataFromRef(ctx, s.Client, *s.LinodeVPC.Spec.CredentialsRef, s.LinodeVPC.GetNamespace(), "apiToken")
if err != nil {
return fmt.Errorf("credentials from secret ref: %w", err)
}
s.LinodeClient = s.LinodeClient.SetToken(string(apiToken))
return nil
}
return nil
}