forked from platform9/cluster-api-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
485 lines (436 loc) · 18.6 KB
/
main.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
/*
Copyright 2018 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 main
import (
"context"
"errors"
"flag"
"fmt"
"math/rand"
"net/http"
_ "net/http/pprof"
"os"
"time"
"github.com/spf13/pflag"
"k8s.io/apimachinery/pkg/runtime"
cgscheme "k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/tools/leaderelection/resourcelock"
cgrecord "k8s.io/client-go/tools/record"
"k8s.io/klog/v2"
"k8s.io/klog/v2/klogr"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/controller"
// +kubebuilder:scaffold:imports
infrav1alpha3 "sigs.k8s.io/cluster-api-provider-aws/api/v1alpha3"
infrav1alpha4 "sigs.k8s.io/cluster-api-provider-aws/api/v1alpha4"
infrav1 "sigs.k8s.io/cluster-api-provider-aws/api/v1beta1"
eksbootstrapv1alpha3 "sigs.k8s.io/cluster-api-provider-aws/bootstrap/eks/api/v1alpha3"
eksbootstrapv1alpha4 "sigs.k8s.io/cluster-api-provider-aws/bootstrap/eks/api/v1alpha4"
eksbootstrapv1 "sigs.k8s.io/cluster-api-provider-aws/bootstrap/eks/api/v1beta1"
eksbootstrapcontrollers "sigs.k8s.io/cluster-api-provider-aws/bootstrap/eks/controllers"
"sigs.k8s.io/cluster-api-provider-aws/controllers"
ekscontrolplanev1alpha3 "sigs.k8s.io/cluster-api-provider-aws/controlplane/eks/api/v1alpha3"
ekscontrolplanev1alpha4 "sigs.k8s.io/cluster-api-provider-aws/controlplane/eks/api/v1alpha4"
ekscontrolplanev1 "sigs.k8s.io/cluster-api-provider-aws/controlplane/eks/api/v1beta1"
ekscontrolplanecontrollers "sigs.k8s.io/cluster-api-provider-aws/controlplane/eks/controllers"
expinfrav1alpha3 "sigs.k8s.io/cluster-api-provider-aws/exp/api/v1alpha3"
expinfrav1alpha4 "sigs.k8s.io/cluster-api-provider-aws/exp/api/v1alpha4"
expinfrav1 "sigs.k8s.io/cluster-api-provider-aws/exp/api/v1beta1"
"sigs.k8s.io/cluster-api-provider-aws/exp/controlleridentitycreator"
expcontrollers "sigs.k8s.io/cluster-api-provider-aws/exp/controllers"
"sigs.k8s.io/cluster-api-provider-aws/exp/instancestate"
"sigs.k8s.io/cluster-api-provider-aws/feature"
"sigs.k8s.io/cluster-api-provider-aws/pkg/cloud/endpoints"
"sigs.k8s.io/cluster-api-provider-aws/pkg/cloud/scope"
"sigs.k8s.io/cluster-api-provider-aws/pkg/record"
"sigs.k8s.io/cluster-api-provider-aws/version"
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
expclusterv1 "sigs.k8s.io/cluster-api/exp/api/v1beta1"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
func init() {
_ = eksbootstrapv1.AddToScheme(scheme)
_ = eksbootstrapv1alpha3.AddToScheme(scheme)
_ = eksbootstrapv1alpha4.AddToScheme(scheme)
_ = cgscheme.AddToScheme(scheme)
_ = clusterv1.AddToScheme(scheme)
_ = expclusterv1.AddToScheme(scheme)
_ = ekscontrolplanev1.AddToScheme(scheme)
_ = ekscontrolplanev1alpha3.AddToScheme(scheme)
_ = ekscontrolplanev1alpha4.AddToScheme(scheme)
_ = infrav1.AddToScheme(scheme)
_ = infrav1alpha3.AddToScheme(scheme)
_ = expinfrav1alpha3.AddToScheme(scheme)
_ = infrav1alpha4.AddToScheme(scheme)
_ = expinfrav1alpha4.AddToScheme(scheme)
_ = expinfrav1.AddToScheme(scheme)
// +kubebuilder:scaffold:scheme
}
var (
metricsBindAddr string
enableLeaderElection bool
leaderElectionNamespace string
watchNamespace string
watchFilterValue string
profilerAddress string
awsClusterConcurrency int
instanceStateConcurrency int
awsMachineConcurrency int
syncPeriod time.Duration
webhookPort int
webhookCertDir string
healthAddr string
serviceEndpoints string
// maxEKSSyncPeriod is the maximum allowed duration for the sync-period flag when using EKS. It is set to 10 minutes
// because during resync it will create a new AWS auth token which can a maximum life of 15 minutes and this ensures
// the token (and kubeconfig secret) is refreshed before token expiration.
maxEKSSyncPeriod = time.Minute * 10
errMaxSyncPeriodExceeded = errors.New("sync period greater than maximum allowed")
errEKSInvalidFlags = errors.New("invalid EKS flag combination")
)
func main() {
klog.InitFlags(nil)
rand.Seed(time.Now().UnixNano())
initFlags(pflag.CommandLine)
pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
pflag.Parse()
ctrl.SetLogger(klogr.New())
if watchNamespace != "" {
setupLog.Info("Watching cluster-api objects only in namespace for reconciliation", "namespace", watchNamespace)
}
if profilerAddress != "" {
setupLog.Info("Profiler listening for requests", "profiler-address", profilerAddress)
go func() {
setupLog.Error(http.ListenAndServe(profilerAddress, nil), "listen and serve error")
}()
}
// Machine and cluster operations can create enough events to trigger the event recorder spam filter
// Setting the burst size higher ensures all events will be recorded and submitted to the API
broadcaster := cgrecord.NewBroadcasterWithCorrelatorOptions(cgrecord.CorrelatorOptions{
BurstSize: 100,
})
ctx := ctrl.SetupSignalHandler()
restConfig := ctrl.GetConfigOrDie()
restConfig.UserAgent = "cluster-api-provider-aws-controller"
mgr, err := ctrl.NewManager(restConfig, ctrl.Options{
Scheme: scheme,
MetricsBindAddress: metricsBindAddr,
LeaderElection: enableLeaderElection,
LeaderElectionResourceLock: resourcelock.LeasesResourceLock,
LeaderElectionID: "controller-leader-elect-capa",
LeaderElectionNamespace: leaderElectionNamespace,
SyncPeriod: &syncPeriod,
Namespace: watchNamespace,
EventBroadcaster: broadcaster,
Port: webhookPort,
CertDir: webhookCertDir,
HealthProbeBindAddress: healthAddr,
})
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
// Initialize event recorder.
record.InitFromRecorder(mgr.GetEventRecorderFor("aws-controller"))
setupLog.V(1).Info(fmt.Sprintf("feature gates: %+v\n", feature.Gates))
// Parse service endpoints.
AWSServiceEndpoints, err := endpoints.ParseFlag(serviceEndpoints)
if err != nil {
setupLog.Error(err, "unable to parse service endpoints", "controller", "AWSCluster")
os.Exit(1)
}
if err = (&controllers.AWSMachineReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("AWSMachine"),
Recorder: mgr.GetEventRecorderFor("awsmachine-controller"),
Endpoints: AWSServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsMachineConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSMachine")
os.Exit(1)
}
if err = (&controllers.AWSClusterReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("awscluster-controller"),
Endpoints: AWSServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsClusterConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSCluster")
os.Exit(1)
}
enableGates(ctx, mgr, AWSServiceEndpoints)
if err = (&infrav1.AWSMachineTemplate{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSMachineTemplate")
os.Exit(1)
}
if err = (&infrav1.AWSMachineTemplateList{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSMachineTemplateList")
os.Exit(1)
}
if err = (&infrav1.AWSCluster{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSCluster")
os.Exit(1)
}
if err = (&infrav1.AWSClusterTemplate{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterTemplate")
os.Exit(1)
}
if err = (&infrav1.AWSClusterList{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterList")
os.Exit(1)
}
if err = (&infrav1.AWSClusterControllerIdentity{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterControllerIdentity")
os.Exit(1)
}
if err = (&infrav1.AWSClusterRoleIdentity{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterRoleIdentity")
os.Exit(1)
}
if err = (&infrav1.AWSClusterStaticIdentity{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterStaticIdentity")
os.Exit(1)
}
if err = (&infrav1.AWSMachine{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSMachine")
os.Exit(1)
}
if err = (&infrav1.AWSMachineList{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSMachineList")
os.Exit(1)
}
if err = (&infrav1.AWSClusterControllerIdentityList{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterControllerIdentityList")
os.Exit(1)
}
if err = (&infrav1.AWSClusterRoleIdentityList{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSClusterRoleIdentityList")
os.Exit(1)
}
if feature.Gates.Enabled(feature.EKS) {
setupLog.Info("enabling EKS webhooks")
if err := (&ekscontrolplanev1.AWSManagedControlPlane{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSManagedControlPlane")
os.Exit(1)
}
if feature.Gates.Enabled(feature.EKSFargate) {
if err = (&expinfrav1.AWSFargateProfile{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSFargateProfile")
os.Exit(1)
}
}
if feature.Gates.Enabled(feature.MachinePool) {
if err = (&expinfrav1.AWSManagedMachinePool{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSManagedMachinePool")
os.Exit(1)
}
}
}
if feature.Gates.Enabled(feature.MachinePool) {
setupLog.Info("enabling webhook for AWSMachinePool")
if err = (&expinfrav1.AWSMachinePool{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "AWSMachinePool")
os.Exit(1)
}
}
// +kubebuilder:scaffold:builder
if err := mgr.AddReadyzCheck("webhook", mgr.GetWebhookServer().StartedChecker()); err != nil {
setupLog.Error(err, "unable to create ready check")
os.Exit(1)
}
if err := mgr.AddHealthzCheck("webhook", mgr.GetWebhookServer().StartedChecker()); err != nil {
setupLog.Error(err, "unable to create health check")
os.Exit(1)
}
setupLog.Info("starting manager", "version", version.Get().String())
if err := mgr.Start(ctx); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
func enableGates(ctx context.Context, mgr ctrl.Manager, awsServiceEndpoints []scope.ServiceEndpoint) {
if feature.Gates.Enabled(feature.EKS) {
setupLog.Info("enabling EKS controllers")
if syncPeriod > maxEKSSyncPeriod {
setupLog.Error(errMaxSyncPeriodExceeded, "failed to enable EKS", "max-sync-period", maxEKSSyncPeriod, "syn-period", syncPeriod)
os.Exit(1)
}
enableIAM := feature.Gates.Enabled(feature.EKSEnableIAM)
allowAddRoles := feature.Gates.Enabled(feature.EKSAllowAddRoles)
setupLog.V(2).Info("EKS IAM role creation", "enabled", enableIAM)
setupLog.V(2).Info("EKS IAM additional roles", "enabled", allowAddRoles)
if allowAddRoles && !enableIAM {
setupLog.Error(errEKSInvalidFlags, "cannot use EKSAllowAddRoles flag without EKSEnableIAM")
os.Exit(1)
}
setupLog.V(2).Info("enabling EKS control plane controller")
if err := (&ekscontrolplanecontrollers.AWSManagedControlPlaneReconciler{
Client: mgr.GetClient(),
EnableIAM: enableIAM,
AllowAdditionalRoles: allowAddRoles,
Endpoints: awsServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsClusterConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSManagedControlPlane")
os.Exit(1)
}
setupLog.V(2).Info("enabling EKS bootstrap controller")
if err := (&eksbootstrapcontrollers.EKSConfigReconciler{
Client: mgr.GetClient(),
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsClusterConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "EKSConfig")
os.Exit(1)
}
if feature.Gates.Enabled(feature.EKSFargate) {
setupLog.V(2).Info("enabling EKS fargate profile controller")
if err := (&expcontrollers.AWSFargateProfileReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("awsfargateprofile-reconciler"),
EnableIAM: enableIAM,
Endpoints: awsServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsClusterConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSFargateProfile")
}
}
if feature.Gates.Enabled(feature.MachinePool) {
setupLog.V(2).Info("enabling EKS managed machine pool controller")
if err := (&expcontrollers.AWSManagedMachinePoolReconciler{
AllowAdditionalRoles: allowAddRoles,
Client: mgr.GetClient(),
EnableIAM: enableIAM,
Endpoints: awsServiceEndpoints,
Recorder: mgr.GetEventRecorderFor("awsmanagedmachinepool-reconciler"),
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: instanceStateConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSManagedMachinePool")
os.Exit(1)
}
}
}
if feature.Gates.Enabled(feature.MachinePool) {
setupLog.V(2).Info("enabling machine pool controller")
if err := (&expcontrollers.AWSMachinePoolReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("awsmachinepool-controller"),
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: instanceStateConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSMachinePool")
os.Exit(1)
}
}
if feature.Gates.Enabled(feature.EventBridgeInstanceState) {
setupLog.Info("EventBridge notifications enabled. enabling AWSInstanceStateController")
if err := (&instancestate.AwsInstanceStateReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("AWSInstanceStateController"),
Endpoints: awsServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: instanceStateConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSInstanceStateController")
os.Exit(1)
}
}
if feature.Gates.Enabled(feature.AutoControllerIdentityCreator) {
setupLog.Info("AutoControllerIdentityCreator enabled")
if err := (&controlleridentitycreator.AWSControllerIdentityReconciler{
Client: mgr.GetClient(),
Log: ctrl.Log.WithName("controllers").WithName("AWSControllerIdentity"),
Endpoints: awsServiceEndpoints,
WatchFilterValue: watchFilterValue,
}).SetupWithManager(ctx, mgr, controller.Options{MaxConcurrentReconciles: awsClusterConcurrency, RecoverPanic: true}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "AWSControllerIdentity")
os.Exit(1)
}
}
}
func initFlags(fs *pflag.FlagSet) {
fs.StringVar(
&metricsBindAddr,
"metrics-bind-addr",
"localhost:8080",
"The address the metric endpoint binds to.",
)
fs.BoolVar(
&enableLeaderElection,
"leader-elect",
false,
"Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.",
)
fs.StringVar(
&watchNamespace,
"namespace",
"",
"Namespace that the controller watches to reconcile cluster-api objects. If unspecified, the controller watches for cluster-api objects across all namespaces.",
)
fs.StringVar(
&leaderElectionNamespace,
"leader-elect-namespace",
"",
"Namespace that the controller performs leader election in. If unspecified, the controller will discover which namespace it is running in.",
)
fs.StringVar(
&profilerAddress,
"profiler-address",
"",
"Bind address to expose the pprof profiler (e.g. localhost:6060)",
)
fs.IntVar(&awsClusterConcurrency,
"awscluster-concurrency",
5,
"Number of AWSClusters to process simultaneously",
)
fs.IntVar(&instanceStateConcurrency,
"instance-state-concurrency",
5,
"Number of concurrent watches for instance state changes",
)
fs.IntVar(&awsMachineConcurrency,
"awsmachine-concurrency",
10,
"Number of AWSMachines to process simultaneously",
)
fs.DurationVar(&syncPeriod,
"sync-period",
10*time.Minute,
fmt.Sprintf("The minimum interval at which watched resources are reconciled. If EKS is enabled the maximum allowed is %s", maxEKSSyncPeriod),
)
fs.IntVar(&webhookPort,
"webhook-port",
9443,
"Webhook Server port.",
)
fs.StringVar(&webhookCertDir, "webhook-cert-dir", "/tmp/k8s-webhook-server/serving-certs/",
"Webhook cert dir, only used when webhook-port is specified.")
fs.StringVar(&healthAddr,
"health-addr",
":9440",
"The address the health endpoint binds to.",
)
fs.StringVar(&serviceEndpoints,
"service-endpoints",
"",
"Set custom AWS service endpoins in semi-colon separated format: ${SigningRegion1}:${ServiceID1}=${URL},${ServiceID2}=${URL};${SigningRegion2}...",
)
fs.StringVar(
&watchFilterValue,
"watch-filter",
"",
fmt.Sprintf("Label value that the controller watches to reconcile cluster-api objects. Label key is always %s. If unspecified, the controller watches for all cluster-api objects.", clusterv1.WatchLabel),
)
feature.MutableGates.AddFlag(fs)
}