-
Notifications
You must be signed in to change notification settings - Fork 64
/
main.go
459 lines (395 loc) · 15.2 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
// Copyright Contributors to the Open Cluster Management project
/*
Copyright 2021.
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.
*/
//go:generate go run pkg/templates/rbac.go
package main
import (
"context"
"crypto/tls"
"flag"
"fmt"
"os"
"strings"
"time"
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
// to ensure that exec-entrypoint and run can make use of them.
subv1alpha1 "github.com/operator-framework/api/pkg/operators/v1alpha1"
operatorsapiv2 "github.com/operator-framework/api/pkg/operators/v2"
promv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
"go.uber.org/zap/zapcore"
configv1 "github.com/openshift/api/config/v1"
consolev1 "github.com/openshift/api/operator/v1"
mcev1 "github.com/stolostron/backplane-operator/api/v1"
operatorv1 "github.com/stolostron/multiclusterhub-operator/api/v1"
"github.com/stolostron/multiclusterhub-operator/controllers"
"github.com/stolostron/multiclusterhub-operator/pkg/utils"
"github.com/stolostron/multiclusterhub-operator/pkg/version"
searchv2v1alpha1 "github.com/stolostron/search-v2-operator/api/v1alpha1"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
ocmapi "open-cluster-management.io/api/addon/v1alpha1"
olmv1 "github.com/operator-framework/api/pkg/operators/v1"
olmapi "github.com/operator-framework/operator-lifecycle-manager/pkg/package-server/apis/operators/v1"
admissionregistration "k8s.io/api/admissionregistration/v1"
networking "k8s.io/api/networking/v1"
rbacv1 "k8s.io/api/rbac/v1"
apixv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth"
"k8s.io/client-go/util/workqueue"
apiregistrationv1 "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/config"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/event"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
"sigs.k8s.io/controller-runtime/pkg/webhook"
//+kubebuilder:scaffold:imports
)
const (
crdName = "multiclusterhubs.operator.open-cluster-management.io"
OperatorVersionEnv = "OPERATOR_VERSION"
)
var (
cacheDuration time.Duration = time.Minute * 5
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
mchController controller.Controller
)
func init() {
if _, exists := os.LookupEnv(OperatorVersionEnv); !exists {
panic(fmt.Sprintf("%s not defined", OperatorVersionEnv))
}
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
utilruntime.Must(operatorv1.AddToScheme(scheme))
utilruntime.Must(searchv2v1alpha1.AddToScheme(scheme))
utilruntime.Must(apiregistrationv1.AddToScheme(scheme))
utilruntime.Must(apixv1.AddToScheme(scheme))
utilruntime.Must(subv1alpha1.AddToScheme(scheme))
utilruntime.Must(operatorsapiv2.AddToScheme(scheme))
utilruntime.Must(mcev1.AddToScheme(scheme))
utilruntime.Must(olmv1.AddToScheme(scheme))
utilruntime.Must(promv1.AddToScheme(scheme))
utilruntime.Must(configv1.AddToScheme(scheme))
utilruntime.Must(consolev1.AddToScheme(scheme))
utilruntime.Must(olmapi.AddToScheme(scheme))
utilruntime.Must(networking.AddToScheme(scheme))
utilruntime.Must(ocmapi.AddToScheme(scheme))
//+kubebuilder:scaffold:scheme
}
func main() {
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
var leaseDuration time.Duration
var renewDeadline time.Duration
var retryPeriod time.Duration
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8383", "The address the metric endpoint binds to.")
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
flag.BoolVar(&enableLeaderElection, "leader-elect", true,
"Enable leader election for controller manager. "+
"Enabling this will ensure there is only one active controller manager.")
flag.DurationVar(&leaseDuration, "leader-election-lease-duration", 137*time.Second, ""+
"The duration that non-leader candidates will wait after observing a leadership "+
"renewal until attempting to acquire leadership of a led but unrenewed leader "+
"slot. This is effectively the maximum duration that a leader can be stopped "+
"before it is replaced by another candidate. This is only applicable if leader "+
"election is enabled.")
flag.DurationVar(&renewDeadline, "leader-election-renew-deadline", 107*time.Second, ""+
"The interval between attempts by the acting master to renew a leadership slot "+
"before it stops leading. This must be less than or equal to the lease duration. "+
"This is only applicable if leader election is enabled.")
flag.DurationVar(&retryPeriod, "leader-election-retry-period", 26*time.Second, ""+
"The duration the clients should wait between attempting acquisition and renewal "+
"of a leadership. This is only applicable if leader election is enabled.")
opts := zap.Options{
Development: true,
TimeEncoder: zapcore.ISO8601TimeEncoder,
}
opts.BindFlags(flag.CommandLine)
flag.Parse()
ctrl.SetLogger(zap.New(zap.UseFlagOptions(&opts)))
ctrl.Log.WithName("MultiClusterHub Operator version").Info(fmt.Sprintf("%#v", version.Get()))
ns, err := getOperatorNamespace()
if err != nil {
setupLog.Error(err, "failed to get operator namespace")
os.Exit(1)
}
mgrOptions := ctrl.Options{
Client: client.Options{
Cache: &client.CacheOptions{
DisableFor: []client.Object{
&corev1.Secret{},
&rbacv1.ClusterRole{},
&rbacv1.ClusterRoleBinding{},
&rbacv1.RoleBinding{},
&corev1.ConfigMap{},
&corev1.ServiceAccount{},
&olmapi.PackageManifest{},
&ocmapi.ClusterManagementAddOn{},
&subv1alpha1.ClusterServiceVersion{},
},
},
},
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: metricsAddr,
},
HealthProbeBindAddress: probeAddr,
LeaderElection: enableLeaderElection,
LeaderElectionID: "multicloudhub-operator-lock",
WebhookServer: webhook.NewServer(webhook.Options{
Port: 9443,
TLSOpts: []func(*tls.Config){func(config *tls.Config) {
config.MinVersion = tls.VersionTLS12
}},
}),
LeaderElectionNamespace: ns,
LeaseDuration: &leaseDuration,
RenewDeadline: &renewDeadline,
RetryPeriod: &retryPeriod,
Controller: config.Controller{
CacheSyncTimeout: cacheDuration,
},
}
mgr, err := ctrl.NewManager(ctrl.GetConfigOrDie(), mgrOptions)
if err != nil {
setupLog.Error(err, "unable to start manager")
os.Exit(1)
}
uncachedClient, err := client.New(ctrl.GetConfigOrDie(), client.Options{
Scheme: scheme,
})
if err != nil {
setupLog.Error(err, "unable to create uncached client")
os.Exit(1)
}
ctx := context.Background()
// Force OperatorCondition Upgradeable to False
//
// We have to at least default the condition to False or
// OLM will use the Readiness condition via our readiness probe instead:
// https://olm.operatorframework.io/docs/advanced-tasks/communicating-operator-conditions-to-olm/#setting-defaults
setupLog.Info("Setting OperatorCondition.")
upgradeableCondition, err := utils.NewOperatorCondition(uncachedClient, operatorsapiv2.Upgradeable)
if err != nil {
setupLog.Error(err, "Cannot create the Upgradeable Operator Condition")
os.Exit(1)
}
mchList := &operatorv1.MultiClusterHubList{}
err = uncachedClient.List(context.TODO(), mchList)
if err != nil {
setupLog.Error(err, "Could not set List multiclusterhubs")
os.Exit(1)
}
if len(mchList.Items) == 0 {
// If there is no MCH then no upgrade logic is needed.
err = upgradeableCondition.Set(ctx, metav1.ConditionTrue, utils.UpgradeableAllowReason, utils.UpgradeableAllowMessage)
if err != nil {
setupLog.Error(err, "Could not set Operator Condition")
os.Exit(1)
}
} else {
// We want to force it to False to ensure that the final decision about whether
// the operator can be upgraded stays within the controller.
err = upgradeableCondition.Set(ctx, metav1.ConditionFalse, utils.UpgradeableInitReason, utils.UpgradeableInitMessage)
if err != nil {
setupLog.Error(err, "unable to create uncached client")
os.Exit(1)
}
}
// re-create the condition, this time with the final client
upgradeableCondition, err = utils.NewOperatorCondition(mgr.GetClient(), operatorsapiv2.Upgradeable)
if err != nil {
setupLog.Error(err, "unable to create uncached client")
os.Exit(1)
}
mchReconciler := &controllers.MultiClusterHubReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
UncachedClient: uncachedClient,
Log: ctrl.Log.WithName("Controller").WithName("Multiclusterhub"),
UpgradeableCond: upgradeableCondition,
}
mchController, err = mchReconciler.SetupWithManager(mgr)
if err != nil {
setupLog.Error(err, "unable to create controller", "controller", "MultiClusterHub")
os.Exit(1)
}
if os.Getenv("ENABLE_WEBHOOKS") != "false" {
// https://book.kubebuilder.io/cronjob-tutorial/running.html#running-webhooks-locally, https://book.kubebuilder.io/multiversion-tutorial/webhooks.html#and-maingo
if err = ensureWebhooks(uncachedClient); err != nil {
setupLog.Error(err, "unable to ensure webhook", "webhook", "MultiClusterHub")
os.Exit(1)
}
if err = (&operatorv1.MultiClusterHub{}).SetupWebhookWithManager(mgr); err != nil {
setupLog.Error(err, "unable to create webhook", "webhook", "MultiClusterHub")
os.Exit(1)
}
}
//+kubebuilder:scaffold:builder
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)
}
// go routine to check if mce exist, if it does add watch
go addMultiClusterEngineWatch(ctx, mgr, uncachedClient)
setupLog.Info("starting manager")
if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil {
setupLog.Error(err, "problem running manager")
os.Exit(1)
}
}
const (
ForceRunModeEnv = "OSDK_FORCE_RUN_MODE"
LocalRunMode = "local"
)
func addMultiClusterEngineWatch(ctx context.Context, mgr ctrl.Manager, uncachedClient client.Client) {
for {
crd := &apixv1.CustomResourceDefinition{}
mceName := "multiclusterengines.multicluster.openshift.io"
err := uncachedClient.Get(ctx, types.NamespacedName{Name: mceName}, crd)
//crdKey := client.ObjectKey{Name: multiclusterengine.Namespace().GetObjectMeta().GetName()}
//err := uncachedClient.Get(ctx, crdKey, &mcev1.MultiClusterEngine{})
if err == nil {
err := mchController.Watch(source.Kind(mgr.GetCache(), &mcev1.MultiClusterEngine{},
handler.TypedFuncs[*mcev1.MultiClusterEngine]{
UpdateFunc: func(ctx context.Context, e event.TypedUpdateEvent[*mcev1.MultiClusterEngine], q workqueue.RateLimitingInterface) {
labels := e.ObjectNew.GetLabels()
name := labels["installer.name"]
if name == "" {
name = labels["multiclusterhub.name"]
}
namespace := labels["installer.namespace"]
if namespace == "" {
namespace = labels["multiclusterhub.namespace"]
}
if name == "" || namespace == "" {
l := log.Log.WithName("mce")
l.Info(fmt.Sprintf("MCE updated, but did not find required labels: %v", labels))
return
}
q.Add(
reconcile.Request{
NamespacedName: types.NamespacedName{
Name: name,
Namespace: namespace,
},
},
)
},
}))
if err == nil {
setupLog.Info("mce watch added")
return
}
}
time.Sleep(30 * time.Second)
}
}
func isRunModeLocal() bool {
return os.Getenv(ForceRunModeEnv) == LocalRunMode
}
func getOperatorNamespace() (string, error) {
if isRunModeLocal() {
return "", fmt.Errorf("operator run mode forced to local")
}
nsBytes, err := os.ReadFile("/var/run/secrets/kubernetes.io/serviceaccount/namespace")
if err != nil {
if os.IsNotExist(err) {
return "", fmt.Errorf("namespace not found for current environment")
}
return "", err
}
ns := strings.TrimSpace(string(nsBytes))
return ns, nil
}
func ensureWebhooks(k8sClient client.Client) error {
ctx := context.Background()
deploymentNamespace, ok := os.LookupEnv("POD_NAMESPACE")
if !ok {
setupLog.Info("Failing due to being unable to locate webhook service namespace")
os.Exit(1)
}
validatingWebhook := operatorv1.ValidatingWebhook(deploymentNamespace)
maxAttempts := 10
for i := 0; i < maxAttempts; i++ {
setupLog.Info("Applying ValidatingWebhookConfiguration")
// Get reference to MCH CRD to set as owner of the webhook
// This way if the CRD is deleted the webhook will be removed with it
crdKey := types.NamespacedName{Name: crdName}
owner := &apixv1.CustomResourceDefinition{}
if err := k8sClient.Get(context.TODO(), crdKey, owner); err != nil {
setupLog.Error(err, "Failed to get MCH CRD")
time.Sleep(5 * time.Second)
continue
}
validatingWebhook.SetOwnerReferences([]metav1.OwnerReference{
{
APIVersion: "apiextensions.k8s.io/v1",
Kind: "CustomResourceDefinition",
Name: owner.Name,
UID: owner.UID,
},
})
existingWebhook := &admissionregistration.ValidatingWebhookConfiguration{}
existingWebhook.SetGroupVersionKind(schema.GroupVersionKind{
Group: "admissionregistration.k8s.io",
Version: "v1",
Kind: "ValidatingWebhookConfiguration",
})
if err := k8sClient.Get(ctx, types.NamespacedName{Name: validatingWebhook.GetName()}, existingWebhook); err != nil {
if errors.IsNotFound(err) {
// Webhook not found. Create and return
err = k8sClient.Create(ctx, validatingWebhook)
if err != nil {
setupLog.Error(err, "Error creating validatingwebhookconfiguration")
time.Sleep(5 * time.Second)
continue
}
return nil
}
setupLog.Error(err, "Error getting validatingwebhookconfiguration")
time.Sleep(5 * time.Second)
continue
} else {
// Webhook already exists. Update and return
setupLog.Info("Updating existing validatingwebhookconfiguration")
existingWebhook.Webhooks = validatingWebhook.Webhooks
err = k8sClient.Update(ctx, existingWebhook)
if err != nil {
setupLog.Error(err, "Error updating validatingwebhookconfiguration")
time.Sleep(5 * time.Second)
continue
}
return nil
}
}
return fmt.Errorf("unable to ensure validatingwebhook exists in allotted time")
}