-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathcluster.go
More file actions
156 lines (131 loc) · 5.16 KB
/
cluster.go
File metadata and controls
156 lines (131 loc) · 5.16 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*
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"
)
// ClusterScopeParams defines the input parameters used to create a new Scope.
type ClusterScopeParams struct {
Client clients.K8sClient
Cluster *clusterv1.Cluster
LinodeCluster *infrav1alpha2.LinodeCluster
LinodeMachineList infrav1alpha2.LinodeMachineList
}
func validateClusterScopeParams(params ClusterScopeParams) error {
if params.Cluster == nil {
return errors.New("cluster is required when creating a ClusterScope")
}
if params.LinodeCluster == nil {
return errors.New("linodeCluster is required when creating a ClusterScope")
}
return nil
}
// NewClusterScope creates a new Scope from the supplied parameters.
// This is meant to be called for each reconcile iteration.
func NewClusterScope(ctx context.Context, linodeClientConfig, dnsClientConfig ClientConfig, params ClusterScopeParams) (*ClusterScope, error) {
if err := validateClusterScopeParams(params); err != nil {
return nil, err
}
linodeClient, err := CreateLinodeClient(linodeClientConfig)
if err != nil {
return nil, fmt.Errorf("failed to create linode client: %w", err)
}
helper, err := patch.NewHelper(params.LinodeCluster, params.Client)
if err != nil {
return nil, fmt.Errorf("failed to init patch helper: %w", err)
}
akamDomainsClient, err := setUpEdgeDNSInterface()
if err != nil {
return nil, fmt.Errorf("failed to create akamai dns client: %w", err)
}
linodeDomainsClient, err := CreateLinodeClient(dnsClientConfig, WithRetryCount(0))
if err != nil {
return nil, fmt.Errorf("failed to create linode client: %w", err)
}
return &ClusterScope{
Client: params.Client,
Cluster: params.Cluster,
LinodeClient: linodeClient,
LinodeDomainsClient: linodeDomainsClient,
AkamaiDomainsClient: akamDomainsClient,
LinodeCluster: params.LinodeCluster,
LinodeMachines: params.LinodeMachineList,
PatchHelper: helper,
}, nil
}
// ClusterScope defines the basic context for an actuator to operate upon.
type ClusterScope struct {
Client clients.K8sClient
PatchHelper *patch.Helper
LinodeClient clients.LinodeClient
Cluster *clusterv1.Cluster
LinodeCluster *infrav1alpha2.LinodeCluster
LinodeMachines infrav1alpha2.LinodeMachineList
AkamaiDomainsClient clients.AkamClient
LinodeDomainsClient clients.LinodeClient
}
// PatchObject persists the cluster configuration and status.
func (s *ClusterScope) PatchObject(ctx context.Context) error {
return s.PatchHelper.Patch(ctx, s.LinodeCluster)
}
// Close closes the current scope persisting the cluster configuration and status.
func (s *ClusterScope) 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 *ClusterScope) AddFinalizer(ctx context.Context) error {
if controllerutil.AddFinalizer(s.LinodeCluster, infrav1alpha2.ClusterFinalizer) {
return s.Close(ctx)
}
return nil
}
func (s *ClusterScope) AddCredentialsRefFinalizer(ctx context.Context) error {
if s.LinodeCluster.Spec.CredentialsRef == nil {
return nil
}
return addCredentialsFinalizer(ctx, s.Client,
*s.LinodeCluster.Spec.CredentialsRef, s.LinodeCluster.GetNamespace(),
toFinalizer(s.LinodeCluster))
}
func (s *ClusterScope) RemoveCredentialsRefFinalizer(ctx context.Context) error {
if s.LinodeCluster.Spec.CredentialsRef == nil {
return nil
}
return removeCredentialsFinalizer(ctx, s.Client,
*s.LinodeCluster.Spec.CredentialsRef, s.LinodeCluster.GetNamespace(),
toFinalizer(s.LinodeCluster))
}
func (s *ClusterScope) SetCredentialRefTokenForLinodeClients(ctx context.Context) error {
if s.LinodeCluster.Spec.CredentialsRef != nil {
apiToken, err := getCredentialDataFromRef(ctx, s.Client, *s.LinodeCluster.Spec.CredentialsRef, s.LinodeCluster.GetNamespace(), "apiToken")
if err != nil {
return fmt.Errorf("credentials from secret ref: %w", err)
}
s.LinodeClient = s.LinodeClient.SetToken(string(apiToken))
dnsToken, err := getCredentialDataFromRef(ctx, s.Client, *s.LinodeCluster.Spec.CredentialsRef, s.LinodeCluster.GetNamespace(), "dnsToken")
if err != nil || len(dnsToken) == 0 {
dnsToken = apiToken
}
s.LinodeDomainsClient = s.LinodeDomainsClient.SetToken(string(dnsToken))
return nil
}
return nil
}