-
Notifications
You must be signed in to change notification settings - Fork 48
/
main.go
370 lines (330 loc) · 10.8 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
// Copyright (c) 2019-2024 VMware, Inc. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package main
import (
"context"
"crypto/tls"
"flag"
"os"
"path"
"time"
"k8s.io/apimachinery/pkg/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
"k8s.io/client-go/util/flowcontrol"
"k8s.io/component-base/logs"
logsv1 "k8s.io/component-base/logs/api/v1"
_ "k8s.io/component-base/logs/json/register"
"k8s.io/klog/v2"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
ctrlmgr "sigs.k8s.io/controller-runtime/pkg/manager"
ctrlsig "sigs.k8s.io/controller-runtime/pkg/manager/signals"
"sigs.k8s.io/controller-runtime/pkg/webhook"
capv1 "github.com/vmware-tanzu/vm-operator/external/capabilities/api/v1alpha1"
"github.com/vmware-tanzu/vm-operator/controllers"
"github.com/vmware-tanzu/vm-operator/pkg"
pkgcfg "github.com/vmware-tanzu/vm-operator/pkg/config"
"github.com/vmware-tanzu/vm-operator/pkg/config/capabilities"
pkgctx "github.com/vmware-tanzu/vm-operator/pkg/context"
pkgmgr "github.com/vmware-tanzu/vm-operator/pkg/manager"
pkgmgrinit "github.com/vmware-tanzu/vm-operator/pkg/manager/init"
"github.com/vmware-tanzu/vm-operator/pkg/util/kube/cource"
"github.com/vmware-tanzu/vm-operator/pkg/util/vsphere/watcher"
"github.com/vmware-tanzu/vm-operator/services"
"github.com/vmware-tanzu/vm-operator/webhooks"
)
const (
// serverKeyName is the name of the server private key.
serverKeyName = "tls.key"
// serverCertName is the name of the serving certificate.
serverCertName = "tls.crt"
)
var (
ctx context.Context
mgr pkgmgr.Manager
managerOpts pkgmgr.Options
rateLimiterQPS int
rateLimiterBurst int
defaultConfig = pkgcfg.FromEnv()
logOptions = logs.NewOptions()
setupLog = klog.Background().WithName("setup")
)
// main is the entrypoint for the application. Please note, unless otherwise
// stated, the order of the functions in main is by-design, and the functions
// should only be re-ordered with care.
func main() {
setupLog.Info("Starting VM Operator controller",
"version", pkg.BuildVersion,
"buildnumber", pkg.BuildNumber,
"buildtype", pkg.BuildType,
"commit", pkg.BuildCommit)
initContext()
initFlags()
initLogging()
initFeatures()
initRateLimiting()
waitForWebhookCertificates()
initManager()
initWebhookServer()
setupLog.Info("Starting controller manager")
sigHandler := ctrlsig.SetupSignalHandler()
if err := mgr.Start(sigHandler); err != nil {
setupLog.Error(err, "Problem running controller manager")
os.Exit(1)
}
}
// initFeatures updates our enabled/disabled features based on the capabilities.
// The inability to get the capabilities should not prevent the container from
// starting as the features will be processed later by the capabilities
// controller.
func initFeatures() {
setupLog.Info("Initial features from environment",
"features", pkgcfg.FromContext(ctx).Features)
scheme := runtime.NewScheme()
_ = clientgoscheme.AddToScheme(scheme)
_ = capv1.AddToScheme(scheme)
c, err := client.New(ctrl.GetConfigOrDie(), client.Options{Scheme: scheme})
if err != nil {
setupLog.Error(err, "Failed to create client for updating capabilities")
} else if _, err := capabilities.UpdateCapabilities(ctx, c); err != nil {
setupLog.Error(err, "Failed to update capabilities")
}
setupLog.Info("Initial features from capabilities",
"features", pkgcfg.FromContext(ctx).Features)
}
func initContext() {
ctx = pkgcfg.WithConfig(defaultConfig)
ctx = cource.WithContext(ctx)
ctx = watcher.WithContext(ctx)
}
func initRateLimiting() {
if rateLimiterQPS == 0 && rateLimiterBurst == 0 {
return
}
cfg := ctrl.GetConfigOrDie()
qps, burst := rateLimiterQPS, rateLimiterBurst
if qps != 0 {
cfg.QPS = float32(qps)
}
if burst != 0 {
cfg.Burst = burst
}
if burst != 0 && qps != 0 {
setupLog.Info("Configuring rate limiter", "QPS", qps, "burst", burst)
cfg.RateLimiter = flowcontrol.NewTokenBucketRateLimiter(cfg.QPS, cfg.Burst)
}
managerOpts.KubeConfig = cfg
}
func initFlags() {
flag.IntVar(
&rateLimiterQPS,
"rate-limit-requests-per-second",
defaultConfig.RateLimitQPS,
"The default number of requests per second to configure the k8s client rate limiter to allow.",
)
flag.IntVar(
&rateLimiterBurst,
"rate-limit-max-requests",
defaultConfig.RateLimitBurst,
"The default number of maximum burst requests per second to configure the k8s client rate limiter to allow.",
)
flag.StringVar(
&managerOpts.MetricsAddr,
"metrics-addr",
":8083",
"The address the metric endpoint binds to.")
flag.StringVar(
&managerOpts.HealthProbeBindAddress,
"health-addr",
":9445",
"The address the health probe endpoint binds to.")
flag.StringVar(
&managerOpts.PprofBindAddress,
"profiler-address",
defaultConfig.ProfilerAddr,
"Bind address to expose the pprof profiler.")
flag.BoolVar(
&managerOpts.LeaderElectionEnabled,
"enable-leader-election",
true,
"Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.")
flag.StringVar(
&managerOpts.LeaderElectionID,
"leader-election-id",
defaultConfig.LeaderElectionID,
"Name of the config map to use as the locking resource when configuring leader election.")
flag.StringVar(
&managerOpts.WatchNamespace,
"watch-namespace",
defaultConfig.WatchNamespace,
"Namespace that the controller watches to reconcile vm operator objects. If unspecified, the controller watches for vm operator objects across all namespaces.")
flag.DurationVar(
&managerOpts.SyncPeriod,
"sync-period",
defaultConfig.SyncPeriod,
"The interval at which objects are synchronized.")
flag.IntVar(
&managerOpts.MaxConcurrentReconciles,
"max-concurrent-reconciles",
defaultConfig.MaxConcurrentReconciles,
"The maximum number of allowed, concurrent reconciles.")
flag.StringVar(
&managerOpts.PodNamespace,
"pod-namespace",
defaultConfig.PodNamespace,
"The namespace in which the pod running the controller manager is located.")
flag.StringVar(
&managerOpts.PodName,
"pod-name",
defaultConfig.PodName,
"The name of the pod running the controller manager.")
flag.StringVar(
&managerOpts.PodServiceAccountName,
"pod-service-account-name",
defaultConfig.PodServiceAccountName,
"The service account name of the pod running the controller manager.")
flag.IntVar(
&managerOpts.WebhookServiceContainerPort,
"webhook-service-container-port",
defaultConfig.WebhookServiceContainerPort,
"The port on which the webhook service expects the webhook server to listen for incoming requests.")
flag.StringVar(
&managerOpts.WebhookServiceNamespace,
"webhook-service-namespace",
defaultConfig.WebhookServiceNamespace,
"The namespace in which the webhook service is located.")
flag.StringVar(
&managerOpts.WebhookServiceName,
"webhook-service-name",
defaultConfig.WebhookServiceName,
"The name of the webhook service.")
flag.StringVar(
&managerOpts.WebhookSecretNamespace,
"webhook-secret-namespace",
defaultConfig.WebhookSecretNamespace,
"The namespace in which the webhook secret is located.")
flag.StringVar(
&managerOpts.WebhookSecretName,
"webhook-secret-name",
defaultConfig.WebhookSecretName,
"The name of the webhook secret.")
flag.StringVar(
&managerOpts.WebhookSecretVolumeMountPath,
"webhook-secret-volume-mount-path",
defaultConfig.WebhookSecretVolumeMountPath,
"The filesystem path to which the webhook secret is mounted.")
flag.BoolVar(
&managerOpts.ContainerNode,
"container-node",
defaultConfig.ContainerNode,
"Should be true if we're running nodes in containers (with vcsim).",
)
logsv1.AddGoFlags(logOptions, flag.CommandLine)
// Set log level 2 as default.
if err := flag.Set("v", "2"); err != nil {
setupLog.Error(err, "Failed to set default log level")
os.Exit(1)
}
flag.Parse()
}
func initLogging() {
if err := logsv1.ValidateAndApply(logOptions, nil); err != nil {
setupLog.Error(err, "Failed to validate logging configuration")
os.Exit(1)
}
// klog.Background will automatically use the right logger.
ctrl.SetLogger(klog.Background())
}
func waitForWebhookCertificates() {
setupLog.Info("Waiting for webhook certificates")
waitOnCertsStartTime := time.Now()
for {
select {
case <-certDirReady(managerOpts.WebhookSecretVolumeMountPath):
return
case <-time.After(time.Second * 5):
setupLog.Info(
"Waiting on certificates",
"elapsed", time.Since(waitOnCertsStartTime).String())
}
}
}
// certDirReady returns a channel that is closed when there are certificates
// available in the configured certificate directory. If CertDir is
// empty or the specified directory does not exist, then the returned channel
// is never closed.
func certDirReady(certDir string) <-chan struct{} {
done := make(chan struct{})
go func() {
crtPath := path.Join(certDir, serverCertName)
keyPath := path.Join(certDir, serverKeyName)
for {
if file, err := os.Stat(crtPath); err == nil {
if file.Size() > 0 {
if file, err := os.Stat(keyPath); err == nil {
if file.Size() > 0 {
close(done)
return
}
}
}
}
time.Sleep(time.Second * 1)
}
}()
return done
}
func initManager() {
// Create a function that adds all of the controllers, services, and
// webhooks to the manager.
addToManager := func(
ctx *pkgctx.ControllerManagerContext,
mgr ctrlmgr.Manager) error {
if err := controllers.AddToManager(ctx, mgr); err != nil {
return err
}
if pkgcfg.FromContext(ctx).Features.WorkloadDomainIsolation {
if err := services.AddToManager(ctx, mgr); err != nil {
return err
}
}
return webhooks.AddToManager(ctx, mgr)
}
setupLog.Info("Creating controller manager")
managerOpts.InitializeProviders = pkgmgrinit.InitializeProviders
managerOpts.AddToManager = addToManager
if managerOpts.WatchNamespace != "" {
setupLog.Info(
"Watching objects only in namespace for reconciliation",
"namespace", managerOpts.WatchNamespace)
}
var err error
mgr, err = pkgmgr.New(ctx, managerOpts)
if err != nil {
setupLog.Error(err, "Problem creating controller manager")
os.Exit(1)
}
}
func initWebhookServer() {
setupLog.Info("Setting up webhook server TLS config")
webhookServer := mgr.GetWebhookServer()
srv := webhookServer.(*webhook.DefaultServer)
tlsCfgFunc := func(cfg *tls.Config) {
cfg.MinVersion = tls.VersionTLS12
cfg.CipherSuites = []uint16{
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
}
}
srv.Options.TLSOpts = []func(*tls.Config){
tlsCfgFunc,
}
setupLog.Info("Adding readiness check to controller manager")
if err := mgr.AddReadyzCheck("webhook", webhookServer.StartedChecker()); err != nil {
setupLog.Error(err, "Unable to create readiness check")
os.Exit(1)
}
}