forked from linode/cluster-api-provider-linode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
448 lines (389 loc) · 17.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
/*
Copyright 2023-2024 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 main
import (
"context"
"crypto/tls"
"errors"
"flag"
"fmt"
"os"
"strconv"
"strings"
"sync"
"time"
"go.opentelemetry.io/otel/sdk/resource"
semconv "go.opentelemetry.io/otel/semconv/v1.25.0"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
capi "sigs.k8s.io/cluster-api/api/v1beta1"
ctrl "sigs.k8s.io/controller-runtime"
crcontroller "sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/metrics/filters"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
infrastructurev1alpha2 "github.com/linode/cluster-api-provider-linode/api/v1alpha2"
"github.com/linode/cluster-api-provider-linode/cloud/scope"
"github.com/linode/cluster-api-provider-linode/internal/controller"
webhookinfrastructurev1alpha2 "github.com/linode/cluster-api-provider-linode/internal/webhook/v1alpha2"
"github.com/linode/cluster-api-provider-linode/observability/tracing"
"github.com/linode/cluster-api-provider-linode/version"
// +kubebuilder:scaffold:imports
_ "go.uber.org/automaxprocs"
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
// to ensure that exec-entrypoint and run can make use of them.
_ "k8s.io/client-go/plugin/pkg/client/auth"
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
)
const (
controllerName = "cluster-api-provider-linode.linode.com"
envK8sNodeName = "K8S_NODE_NAME"
envK8sPodName = "K8S_POD_NAME"
concurrencyDefault = 10
qpsDefault = 20
burstDefault = 30
)
type flagVars struct {
machineWatchFilter string
clusterWatchFilter string
objectStorageBucketWatchFilter string
objectStorageKeyWatchFilter string
metricsAddr string
secureMetrics bool
enableLeaderElection bool
probeAddr string
restConfigQPS int
restConfigBurst int
linodeClusterConcurrency int
linodeMachineConcurrency int
linodeObjectStorageBucketConcurrency int
linodeVPCConcurrency int
linodePlacementGroupConcurrency int
linodeFirewallConcurrency int
}
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(capi.AddToScheme(scheme))
utilruntime.Must(infrastructurev1alpha2.AddToScheme(scheme))
// +kubebuilder:scaffold:scheme
}
func main() {
flags, opts := parseFlags()
ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
setupLog.Info(fmt.Sprintf("CAPL version: %s", version.GetVersion()))
linodeClientConfig, dnsClientConfig := validateEnvironment()
mgr := setupManager(flags, linodeClientConfig, dnsClientConfig)
ctx := ctrl.SetupSignalHandler()
run := func(ctx context.Context) error {
o11yShutdown := setupObservability(ctx)
defer o11yShutdown()
setupLog.Info("starting manager")
return mgr.Start(ctx)
}
if err := run(ctx); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
// parseFlags initializes command-line flags and returns the parsed flags and zap options.
// It sets up various configuration options for the application, including filters, metrics,
// health probe addresses, leader election, and concurrency settings.
func parseFlags() (flags flagVars, opts zap.Options) {
flags = flagVars{}
flag.StringVar(&flags.machineWatchFilter, "machine-watch-filter", "", "The machines to watch by label.")
flag.StringVar(&flags.clusterWatchFilter, "cluster-watch-filter", "", "The clusters to watch by label.")
flag.StringVar(&flags.objectStorageBucketWatchFilter, "object-storage-bucket-watch-filter", "", "The object bucket storages to watch by label.")
flag.StringVar(&flags.metricsAddr, "metrics-bind-address", "0", "The address the metrics endpoint binds to. "+
"Use :8443 for HTTPS or :8080 for HTTP, or leave as 0 to disable the metrics service.")
// Mitigate CVE-2023-44487 by disabling HTTP2 by default until the Go
// standard library and golang.org/x/net are fully fixed.
// Right now, it is possible for authenticated and unauthenticated users to
// hold open HTTP2 connections and consume huge amounts of memory.
// See:
// * https://github.com/kubernetes/kubernetes/pull/121120
// * https://github.com/kubernetes/kubernetes/issues/121197
// * https://github.com/golang/go/issues/63417#issuecomment-1758858612
flag.BoolVar(&flags.secureMetrics, "metrics-secure", false, "If set, the metrics endpoint is served securely via HTTPS.")
flag.StringVar(&flags.probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
flag.BoolVar(&flags.enableLeaderElection, "leader-elect", false, "Enable leader election for controller manager.")
flag.IntVar(&flags.restConfigQPS, "kube-api-qps", qpsDefault, "Maximum queries per second from the controller client")
flag.IntVar(&flags.restConfigBurst, "kube-api-burst", burstDefault, "Maximum number of queries in one burst")
flag.IntVar(&flags.linodeClusterConcurrency, "linodecluster-concurrency", concurrencyDefault, "Number of LinodeClusters to process simultaneously")
flag.IntVar(&flags.linodeMachineConcurrency, "linodemachine-concurrency", concurrencyDefault, "Number of LinodeMachines to process simultaneously")
flag.IntVar(&flags.linodeObjectStorageBucketConcurrency, "linodeobjectstoragebucket-concurrency", concurrencyDefault, "Number of linodeObjectStorageBuckets to process simultaneously")
flag.IntVar(&flags.linodeVPCConcurrency, "linodevpc-concurrency", concurrencyDefault, "Number of LinodeVPCs to process simultaneously")
flag.IntVar(&flags.linodePlacementGroupConcurrency, "linodeplacementgroup-concurrency", concurrencyDefault, "Number of Linode Placement Groups to process simultaneously")
flag.IntVar(&flags.linodeFirewallConcurrency, "linodefirewall-concurrency", concurrencyDefault, "Number of Linode Firewall to process simultaneously")
opts = zap.Options{Development: true}
opts.BindFlags(flag.CommandLine)
flag.Parse()
return flags, opts
}
// validateEnvironment checks for required environment variables and returns the configuration for Linode and DNS clients.
// It ensures that LINODE_TOKEN is set and defaults LINODE_DNS_TOKEN to LINODE_TOKEN if not provided.
func validateEnvironment() (linodeConfig, dnsConfig scope.ClientConfig) {
linodeToken := os.Getenv("LINODE_TOKEN")
linodeDNSToken := os.Getenv("LINODE_DNS_TOKEN")
linodeDNSURL := os.Getenv("LINODE_DNS_URL")
linodeDNSCA := os.Getenv("LINODE_DNS_CA")
if linodeToken == "" {
setupLog.Error(errors.New("failed to get LINODE_TOKEN environment variable"), "unable to start operator")
os.Exit(1)
}
if linodeDNSToken == "" {
setupLog.Info("LINODE_DNS_TOKEN not provided, defaulting to the value of LINODE_TOKEN")
linodeDNSToken = linodeToken
}
return scope.ClientConfig{Token: linodeToken},
scope.ClientConfig{Token: linodeDNSToken, BaseUrl: linodeDNSURL, RootCertificatePath: linodeDNSCA}
}
// setupManager initializes and returns a new manager instance with the provided configurations.
// It sets up the REST configuration, metrics server options, and registers controllers and webhooks.
func setupManager(flags flagVars, linodeConfig, dnsConfig scope.ClientConfig) manager.Manager {
restConfig := ctrl.GetConfigOrDie()
restConfig.QPS = float32(flags.restConfigQPS)
restConfig.Burst = flags.restConfigBurst
restConfig.UserAgent = fmt.Sprintf("CAPL/%s", version.GetVersion())
var tlsOpts []func(*tls.Config)
if !flags.secureMetrics {
tlsOpts = append(tlsOpts, func(c *tls.Config) {
setupLog.Info("disabling http/2")
c.NextProtos = []string{"http/1.2"}
})
}
metricsServerOptions := metricsserver.Options{
BindAddress: flags.metricsAddr,
SecureServing: flags.secureMetrics,
TLSOpts: tlsOpts,
}
if flags.secureMetrics {
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization
}
mgr, err := ctrl.NewManager(restConfig, ctrl.Options{
Scheme: scheme,
Metrics: metricsServerOptions,
HealthProbeBindAddress: flags.probeAddr,
LeaderElection: flags.enableLeaderElection,
LeaderElectionID: "3cfd31c3.cluster.x-k8s.io",
})
if err != nil {
setupLog.Error(err, "unable to create manager")
os.Exit(1)
}
// Ensure mgr is not nil before proceeding
if mgr == nil {
setupLog.Error(errors.New("manager creation failed"), "manager is nil")
os.Exit(1)
}
setupControllers(mgr, flags, linodeConfig, dnsConfig)
// Setup webhooks if enabled (defaults to true)
webhooksEnabled := true // default to enabled
if webhooksEnv := os.Getenv("ENABLE_WEBHOOKS"); webhooksEnv != "" {
var err error
webhooksEnabled, err = strconv.ParseBool(webhooksEnv)
if err != nil {
setupLog.Error(err, "invalid ENABLE_WEBHOOKS value, defaulting to true")
}
}
if webhooksEnabled {
setupWebhooks(mgr)
}
// +kubebuilder:scaffold:builder
setupHealthChecks(mgr)
return mgr
}
// setupHealthChecks adds health and readiness checks to the manager.
// It registers a health check at the "healthz" endpoint and a readiness check at the "readyz" endpoint.
func setupHealthChecks(mgr manager.Manager) {
if err := mgr.AddHealthzCheck("healthz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up health check")
os.Exit(1)
}
if err := mgr.AddReadyzCheck("readyz", healthz.Ping); err != nil {
setupLog.Error(err, "unable to set up ready check")
os.Exit(1)
}
}
// setupControllers initializes and registers various controllers with the manager.
// It sets up controllers for Linode resources, configuring each with the appropriate client and options.
func setupControllers(mgr manager.Manager, flags flagVars, linodeClientConfig, dnsConfig scope.ClientConfig) {
// LinodeCluster Controller
if err := (&controller.LinodeClusterReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("LinodeClusterReconciler"),
WatchFilterValue: flags.clusterWatchFilter,
LinodeClientConfig: linodeClientConfig,
DnsClientConfig: dnsConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeClusterConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeCluster")
os.Exit(1)
}
useGzip, err := strconv.ParseBool(os.Getenv("GZIP_COMPRESSION_ENABLED"))
if err != nil {
setupLog.Error(err, "proceeding without gzip compression for user-data")
}
// LinodeMachine Controller
if err := (&controller.LinodeMachineReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("LinodeMachineReconciler"),
WatchFilterValue: flags.machineWatchFilter,
LinodeClientConfig: linodeClientConfig,
GzipCompressionEnabled: useGzip,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeMachineConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeMachine")
os.Exit(1)
}
// LinodeVPC Controller
if err := (&controller.LinodeVPCReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("LinodeVPCReconciler"),
WatchFilterValue: flags.clusterWatchFilter,
LinodeClientConfig: linodeClientConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeVPCConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeVPC")
os.Exit(1)
}
// LinodeObjectStorageBucket Controller
if err := (&controller.LinodeObjectStorageBucketReconciler{
Client: mgr.GetClient(),
Logger: ctrl.Log.WithName("LinodeObjectStorageBucketReconciler"),
Recorder: mgr.GetEventRecorderFor("LinodeObjectStorageBucketReconciler"),
WatchFilterValue: flags.objectStorageBucketWatchFilter,
LinodeClientConfig: linodeClientConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeObjectStorageBucketConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeObjectStorageBucket")
os.Exit(1)
}
// LinodePlacementGroup Controller
if err := (&controller.LinodePlacementGroupReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("LinodePlacementGroupReconciler"),
WatchFilterValue: flags.clusterWatchFilter,
LinodeClientConfig: linodeClientConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodePlacementGroupConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodePlacementGroup")
os.Exit(1)
}
// LinodeObjectStorageKey Controller
if err := (&controller.LinodeObjectStorageKeyReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
Logger: ctrl.Log.WithName("LinodeObjectStorageKeyReconciler"),
Recorder: mgr.GetEventRecorderFor("LinodeObjectStorageKeyReconciler"),
WatchFilterValue: flags.objectStorageKeyWatchFilter,
LinodeClientConfig: linodeClientConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeObjectStorageBucketConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeObjectStorageKey")
os.Exit(1)
}
// LinodeFirewall Controller
if err := (&controller.LinodeFirewallReconciler{
Client: mgr.GetClient(),
Recorder: mgr.GetEventRecorderFor("LinodeFirewallReconciler"),
WatchFilterValue: flags.clusterWatchFilter,
LinodeClientConfig: linodeClientConfig,
}).SetupWithManager(mgr, crcontroller.Options{MaxConcurrentReconciles: flags.linodeFirewallConcurrency}); err != nil {
setupLog.Error(err, "unable to create controller", "controller", "LinodeFirewall")
os.Exit(1)
}
}
// setupWebhooks initializes webhooks for the specified resources in the manager.
// It sets up webhooks for various Linode resources to handle admission control and validation.
func setupWebhooks(mgr manager.Manager) {
var err error
if err = webhookinfrastructurev1alpha2.SetupLinodeClusterWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeCluster")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeClusterTemplateWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeClusterTemplate")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeMachineWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeMachine")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeMachineTemplateWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeMachineTemplate")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeVPCWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeVPC")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeObjectStorageBucketWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeObjectStorageBucket")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodePlacementGroupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodePlacementGroup")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeObjectStorageKeyWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeObjectStorageKey")
os.Exit(1)
}
if err = webhookinfrastructurev1alpha2.SetupLinodeFirewallWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "LinodeFirewall")
os.Exit(1)
}
}
// setup configures observability features and returns a cleanup function.
// It sets up OpenTelemetry tracing and logs the configuration applied, returning a function to clean up resources.
func setupObservability(ctx context.Context) func() {
node := os.Getenv(envK8sNodeName)
pod := os.Getenv(envK8sPodName)
res := resource.NewWithAttributes(
semconv.SchemaURL,
semconv.ServiceName(controllerName),
semconv.ServiceVersion(version.GetVersion()),
semconv.K8SPodName(pod),
semconv.K8SNodeName(node),
)
tracingShutdown, err := tracing.Setup(ctx, res)
if err != nil {
setupLog.Error(err, "failed to setup tracing")
}
attrs := []any{}
for _, kv := range os.Environ() {
k, v, ok := strings.Cut(kv, "=")
if ok && strings.HasPrefix(k, "OTEL_") {
attrs = append(attrs, k, v)
}
}
setupLog.Info("opentelemetry configuration applied",
attrs...,
)
return func() {
timeout := 25 * time.Second //nolint:mnd // 2.5x default OTLP timeout
ctx, cancel := context.WithTimeout(context.WithoutCancel(ctx), timeout)
defer cancel()
wg := &sync.WaitGroup{}
if tracingShutdown != nil {
wg.Add(1)
go func() {
defer wg.Done()
if err := tracingShutdown(ctx); err != nil {
setupLog.Error(err, "failed to shutdown tracing")
}
}()
}
wg.Wait()
}
}