forked from opendatahub-io/codeflare-operator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.go
524 lines (453 loc) · 18 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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
/*
Copyright 2023.
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"
"net/http"
"os"
"strings"
"time"
cert "github.com/open-policy-agent/cert-controller/pkg/rotator"
dsciv1 "github.com/opendatahub-io/opendatahub-operator/v2/apis/dscinitialization/v1"
awv1beta2 "github.com/project-codeflare/appwrapper/api/v1beta2"
awconfig "github.com/project-codeflare/appwrapper/pkg/config"
awctrl "github.com/project-codeflare/appwrapper/pkg/controller"
rayv1 "github.com/ray-project/kuberay/ray-operator/apis/ray/v1"
"go.uber.org/zap/zapcore"
"golang.org/x/exp/slices"
corev1 "k8s.io/api/core/v1"
networkingv1 "k8s.io/api/networking/v1"
rbacv1 "k8s.io/api/rbac/v1"
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
apiextensionsclientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/discovery"
"k8s.io/client-go/kubernetes"
clientgoscheme "k8s.io/client-go/kubernetes/scheme"
_ "k8s.io/client-go/plugin/pkg/client/auth"
"k8s.io/client-go/rest"
clientcache "k8s.io/client-go/tools/cache"
retrywatch "k8s.io/client-go/tools/watch"
configv1alpha1 "k8s.io/component-base/config/v1alpha1"
"k8s.io/klog/v2"
"k8s.io/utils/ptr"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/cache"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/healthz"
"sigs.k8s.io/controller-runtime/pkg/log/zap"
metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
kueue "sigs.k8s.io/kueue/apis/kueue/v1beta1"
"sigs.k8s.io/yaml"
routev1 "github.com/openshift/api/route/v1"
clientset "github.com/openshift/client-go/config/clientset/versioned"
"github.com/project-codeflare/codeflare-operator/pkg/config"
"github.com/project-codeflare/codeflare-operator/pkg/controllers"
// +kubebuilder:scaffold:imports
)
var (
scheme = runtime.NewScheme()
setupLog = ctrl.Log.WithName("setup")
OperatorVersion = "UNKNOWN"
BuildDate = "UNKNOWN"
AppWrapperVersion = "UNKNOWN"
)
const (
workloadAPI = "workloads.kueue.x-k8s.io"
rayclusterAPI = "rayclusters.ray.io"
)
func init() {
utilruntime.Must(clientgoscheme.AddToScheme(scheme))
// Ray
utilruntime.Must(rayv1.AddToScheme(scheme))
// OpenShift Route
utilruntime.Must(routev1.Install(scheme))
// ODH
utilruntime.Must(dsciv1.AddToScheme(scheme))
// AppWrapper
utilruntime.Must(awv1beta2.AddToScheme(scheme))
// Kueue
utilruntime.Must(kueue.AddToScheme(scheme))
}
// +kubebuilder:rbac:groups=config.openshift.io,resources=ingresses,verbs=get
func main() {
var configMapName string
flag.StringVar(&configMapName, "config", "codeflare-operator-config",
"The name of the ConfigMap to load the operator configuration from. "+
"If it does not exist, the operator will create and initialise it.")
zapOptions := zap.Options{
Development: true,
TimeEncoder: zapcore.TimeEncoderOfLayout(time.RFC3339),
}
zapOptions.BindFlags(flag.CommandLine)
flag.Parse()
ctrl.SetLogger(controllers.FilteredLogger(zap.New(zap.UseFlagOptions(&zapOptions))))
klog.SetLogger(ctrl.Log)
setupLog.Info("Build info",
"operatorVersion", OperatorVersion,
"appwrapperVersion", AppWrapperVersion,
"date", BuildDate,
)
ctx, cancel := context.WithCancel(ctrl.SetupSignalHandler())
cfg := &config.CodeFlareOperatorConfiguration{
ClientConnection: &config.ClientConnection{
QPS: ptr.To(float32(50)),
Burst: ptr.To(int32(100)),
},
ControllerManager: config.ControllerManager{
Metrics: config.MetricsConfiguration{
BindAddress: ":8080",
},
Health: config.HealthConfiguration{
BindAddress: ":8081",
ReadinessEndpointName: "readyz",
LivenessEndpointName: "healthz",
},
LeaderElection: &configv1alpha1.LeaderElectionConfiguration{},
},
KubeRay: &config.KubeRayConfiguration{
RayDashboardOAuthEnabled: ptr.To(true),
IngressDomain: "",
MTLSEnabled: ptr.To(true),
},
AppWrapper: &config.AppWrapperConfiguration{
Enabled: ptr.To(false),
Config: awconfig.NewAppWrapperConfig(),
},
}
kubeConfig, err := ctrl.GetConfig()
exitOnError(err, "unable to get client config")
if kubeConfig.UserAgent == "" {
kubeConfig.UserAgent = "codeflare-operator"
}
kubeClient, err := kubernetes.NewForConfig(kubeConfig)
exitOnError(err, "unable to create Kubernetes client")
namespace := namespaceOrDie()
exitOnError(loadIntoOrCreate(ctx, kubeClient, namespace, configMapName, cfg), "unable to initialise configuration")
setupLog.Info("Successfully configured operator", "config", *cfg)
kubeConfig.Burst = int(ptr.Deref(cfg.ClientConnection.Burst, int32(rest.DefaultBurst)))
kubeConfig.QPS = ptr.Deref(cfg.ClientConnection.QPS, rest.DefaultQPS)
setupLog.V(2).Info("REST client", "qps", kubeConfig.QPS, "burst", kubeConfig.Burst)
selector, err := labels.Parse(controllers.RayClusterNameLabel)
exitOnError(err, "unable to parse label selector")
cacheOpts := cache.Options{
ByObject: map[client.Object]cache.ByObject{
&corev1.Secret{}: {
Label: selector,
},
&corev1.Service{}: {
Label: selector,
},
&corev1.ServiceAccount{}: {
Label: selector,
},
&networkingv1.Ingress{}: {
Label: selector,
},
&networkingv1.NetworkPolicy{}: {
Label: selector,
},
&rbacv1.ClusterRoleBinding{}: {
Label: selector,
},
},
}
if isOpenShift(ctx, kubeClient.DiscoveryClient) {
cacheOpts.ByObject[&routev1.Route{}] = cache.ByObject{
Label: selector,
}
}
mgr, err := ctrl.NewManager(kubeConfig, ctrl.Options{
Scheme: scheme,
Metrics: metricsserver.Options{
BindAddress: cfg.Metrics.BindAddress,
},
HealthProbeBindAddress: cfg.Health.BindAddress,
LeaderElection: ptr.Deref(cfg.LeaderElection.LeaderElect, false),
LeaderElectionID: cfg.LeaderElection.ResourceName,
LeaderElectionNamespace: cfg.LeaderElection.ResourceNamespace,
LeaderElectionResourceLock: cfg.LeaderElection.ResourceLock,
LeaseDuration: &cfg.LeaderElection.LeaseDuration.Duration,
RetryPeriod: &cfg.LeaderElection.RetryPeriod.Duration,
RenewDeadline: &cfg.LeaderElection.RenewDeadline.Duration,
Cache: cacheOpts,
})
exitOnError(err, "unable to create manager")
certsReady := make(chan struct{})
exitOnError(setupCertManagement(mgr, namespace, certsReady), "unable to setup cert-controller")
if cfg.KubeRay.IngressDomain == "" {
configClient, err := clientset.NewForConfig(kubeConfig)
exitOnError(err, "unable to create Route Client Set")
cfg.KubeRay.IngressDomain, err = getClusterDomain(ctx, configClient)
exitOnError(err, cfg.KubeRay.IngressDomain)
}
setupLog.Info("setting up health endpoints")
exitOnError(setupProbeEndpoints(mgr, cfg, certsReady), "unable to set up health check")
setupLog.Info("setting up RayCluster controller")
go waitForRayClusterAPIandSetupController(ctx, mgr, cfg, isOpenShift(ctx, kubeClient.DiscoveryClient), certsReady)
setupLog.Info("setting up AppWrapper components")
exitOnError(setupAppWrapperComponents(ctx, cancel, mgr, cfg, certsReady), "unable to setup AppWrapper")
setupLog.Info("starting manager")
exitOnError(mgr.Start(ctx), "error running manager")
}
func setupRayClusterController(mgr ctrl.Manager, cfg *config.CodeFlareOperatorConfiguration, isOpenShift bool, certsReady chan struct{}) error {
setupLog.Info("Waiting for certificate generation to complete")
<-certsReady
setupLog.Info("Certs ready")
err := controllers.SetupRayClusterWebhookWithManager(mgr, cfg.KubeRay, OperatorVersion)
if err != nil {
return err
}
rayClusterController := controllers.RayClusterReconciler{
Client: mgr.GetClient(),
Scheme: mgr.GetScheme(),
Config: cfg.KubeRay,
IsOpenShift: isOpenShift,
}
return rayClusterController.SetupWithManager(mgr)
}
func waitForRayClusterAPIandSetupController(ctx context.Context, mgr ctrl.Manager, cfg *config.CodeFlareOperatorConfiguration, isOpenShift bool, certsReady chan struct{}) {
if isAPIAvailable(ctx, mgr, rayclusterAPI) {
exitOnError(setupRayClusterController(mgr, cfg, isOpenShift, certsReady), "unable to setup RayCluster controller")
} else {
waitForAPI(ctx, mgr, rayclusterAPI, func() {
exitOnError(setupRayClusterController(mgr, cfg, isOpenShift, certsReady), "unable to setup RayCluster controller")
})
}
}
func setupAppWrapperComponents(ctx context.Context, cancel context.CancelFunc, mgr ctrl.Manager,
cfg *config.CodeFlareOperatorConfiguration, certsReady chan struct{}) error {
if cfg.AppWrapper == nil || !ptr.Deref(cfg.AppWrapper.Enabled, false) {
setupLog.Info("Embedded AppWrapper controller is disabled by config")
return nil
}
// AppWrapper webhook doesn't depend on WorkloadAPI availablity but does need certsReady
go setupAppWrapperWebhooks(mgr, cfg, certsReady)
if isAPIAvailable(ctx, mgr, workloadAPI) {
setupLog.Info("Workload API available, enabling AppWrappers")
go setupAppWrapperController(mgr, cfg, certsReady)
return awctrl.SetupIndexers(ctx, mgr, cfg.AppWrapper.Config)
} else {
// If AppWrappers are enabled and the Workload API becomes available later, initiate an orderly
// restart of the codeflare operator to enable the workload indexer to be setup in the the new instance of the operator.
// It is not possible to add an indexer once the mgr has started so, a restart if the only avenue.
setupLog.Info("Workload API not available, setting up waiter for Workload API availability")
go waitForAPI(ctx, mgr, workloadAPI, func() {
setupLog.Info("Workload API now available, triggering controller restart")
cancel()
})
return nil
}
}
func setupAppWrapperWebhooks(mgr ctrl.Manager, cfg *config.CodeFlareOperatorConfiguration, certsReady chan struct{}) {
setupLog.Info("Waiting for certificate generation to complete")
<-certsReady
setupLog.Info("Setting up AppWrapper webhooks")
exitOnError(awctrl.SetupWebhooks(mgr, cfg.AppWrapper.Config), "unable to setup AppWrapper webhooks")
}
func setupAppWrapperController(mgr ctrl.Manager, cfg *config.CodeFlareOperatorConfiguration, certsReady chan struct{}) {
setupLog.Info("Waiting for certificate generation to complete")
<-certsReady
setupLog.Info("Setting up AppWrapper controller")
exitOnError(awctrl.SetupControllers(mgr, cfg.AppWrapper.Config), "unable to setup AppWrapper controller")
}
// +kubebuilder:rbac:groups="",resources=secrets,verbs=get;list;watch;update
// +kubebuilder:rbac:groups="admissionregistration.k8s.io",resources=mutatingwebhookconfigurations,verbs=get;list;watch;update
// +kubebuilder:rbac:groups="admissionregistration.k8s.io",resources=validatingwebhookconfigurations,verbs=get;list;watch;update
func setupCertManagement(mgr ctrl.Manager, namespace string, certsReady chan struct{}) error {
return cert.AddRotator(mgr, &cert.CertRotator{
SecretKey: types.NamespacedName{
Namespace: namespace,
Name: "codeflare-operator-webhook-server-cert",
},
CertDir: "/tmp/k8s-webhook-server/serving-certs",
CAName: "codeflare",
CAOrganization: "openshift.ai",
DNSName: fmt.Sprintf("%s.%s.svc", "codeflare-operator-webhook-service", namespace),
IsReady: certsReady,
Webhooks: []cert.WebhookInfo{
{
Type: cert.Validating,
Name: "codeflare-operator-validating-webhook-configuration",
},
{
Type: cert.Mutating,
Name: "codeflare-operator-mutating-webhook-configuration",
},
},
// When the controller is running in the leader election mode,
// we expect webhook server will run in primary and secondary instance
RequireLeaderElection: false,
})
}
func setupProbeEndpoints(mgr ctrl.Manager, cfg *config.CodeFlareOperatorConfiguration, certsReady chan struct{}) error {
err := mgr.AddHealthzCheck(cfg.Health.LivenessEndpointName, healthz.Ping)
if err != nil {
return err
}
return mgr.AddReadyzCheck(cfg.Health.ReadinessEndpointName, func(req *http.Request) error {
select {
case <-certsReady:
return mgr.GetWebhookServer().StartedChecker()(req)
default:
return errors.New("certificates are not ready")
}
})
}
func loadIntoOrCreate(ctx context.Context, client kubernetes.Interface, ns, name string, cfg *config.CodeFlareOperatorConfiguration) error {
configMap, err := client.CoreV1().ConfigMaps(ns).Get(ctx, name, metav1.GetOptions{})
if apierrors.IsNotFound(err) {
return createConfigMap(ctx, client, ns, name, cfg)
} else if err != nil {
return err
}
if len(configMap.Data) != 1 {
return fmt.Errorf("cannot resolve config from ConfigMap %s/%s", configMap.Namespace, configMap.Name)
}
for _, data := range configMap.Data {
return yaml.Unmarshal([]byte(data), cfg)
}
return nil
}
func createConfigMap(ctx context.Context, client kubernetes.Interface, ns, name string, cfg *config.CodeFlareOperatorConfiguration) error {
content, err := yaml.Marshal(cfg)
if err != nil {
return err
}
configMap := &corev1.ConfigMap{
TypeMeta: metav1.TypeMeta{
Kind: "ConfigMap",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: ns,
},
Data: map[string]string{
"config.yaml": string(content),
},
}
_, err = client.CoreV1().ConfigMaps(ns).Create(ctx, configMap, metav1.CreateOptions{})
return err
}
func namespaceOrDie() string {
// This way assumes you've set the NAMESPACE environment variable either manually, when running
// the operator standalone, or using the downward API, when running the operator in-cluster.
if ns := os.Getenv("NAMESPACE"); ns != "" {
return ns
}
// Fall back to the namespace associated with the service account token, if available
if data, err := os.ReadFile("/var/run/secrets/kubernetes.io/serviceaccount/namespace"); err == nil {
if ns := strings.TrimSpace(string(data)); len(ns) > 0 {
return ns
}
}
panic("unable to determine current namespace")
}
func exitOnError(err error, msg string) {
if err != nil {
setupLog.Error(err, msg)
os.Exit(1)
}
}
func isOpenShift(ctx context.Context, dc discovery.DiscoveryInterface) bool {
logger := ctrl.LoggerFrom(ctx)
apiGroupList, err := dc.ServerGroups()
if err != nil {
logger.Info("Error while querying ServerGroups, assuming we're on Vanilla Kubernetes")
return false
}
for i := 0; i < len(apiGroupList.Groups); i++ {
if strings.HasSuffix(apiGroupList.Groups[i].Name, ".openshift.io") {
logger.Info("We detected being on OpenShift!")
return true
}
}
logger.Info("We detected being on Vanilla Kubernetes!")
return false
}
func getClusterDomain(ctx context.Context, configClient *clientset.Clientset) (string, error) {
ingress, err := configClient.ConfigV1().Ingresses().Get(ctx, "cluster", metav1.GetOptions{})
if err != nil {
return "", fmt.Errorf("failed to get Ingress object: %v", err)
}
domain := ingress.Spec.Domain
if domain == "" {
return "", fmt.Errorf("domain is not set in the Ingress object")
}
return domain, nil
}
// +kubebuilder:rbac:groups="apiextensions.k8s.io",resources=customresourcedefinitions,verbs=get;list;watch
func isAPIAvailable(ctx context.Context, mgr ctrl.Manager, apiName string) bool {
crdClient, err := apiextensionsclientset.NewForConfig(mgr.GetConfig())
exitOnError(err, "unable to create CRD client")
crdList, err := crdClient.ApiextensionsV1().CustomResourceDefinitions().List(ctx, metav1.ListOptions{})
exitOnError(err, "unable to list CRDs")
return slices.ContainsFunc(crdList.Items, func(crd apiextensionsv1.CustomResourceDefinition) bool {
return crd.Name == apiName
})
}
func waitForAPI(ctx context.Context, mgr ctrl.Manager, apiName string, action func()) {
crdClient, err := apiextensionsclientset.NewForConfig(mgr.GetConfig())
exitOnError(err, "unable to create CRD client")
crdList, err := crdClient.ApiextensionsV1().CustomResourceDefinitions().List(ctx, metav1.ListOptions{})
exitOnError(err, "unable to list CRDs")
// If API is already available, just invoke action
if slices.ContainsFunc(crdList.Items, func(crd apiextensionsv1.CustomResourceDefinition) bool {
return crd.Name == apiName
}) {
action()
return
}
// Wait for the API to become available then invoke action
setupLog.Info(fmt.Sprintf("API %v not available, setting up retry watcher", apiName))
retryWatcher, err := retrywatch.NewRetryWatcher(crdList.ResourceVersion, &clientcache.ListWatch{
ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
return crdClient.ApiextensionsV1().CustomResourceDefinitions().List(ctx, metav1.ListOptions{})
},
WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
return crdClient.ApiextensionsV1().CustomResourceDefinitions().Watch(ctx, metav1.ListOptions{})
},
})
exitOnError(err, "unable to create retry watcher")
defer retryWatcher.Stop()
for {
select {
case <-ctx.Done():
return
case event := <-retryWatcher.ResultChan():
switch event.Type {
case watch.Error:
exitOnError(apierrors.FromObject(event.Object), fmt.Sprintf("error watching for API %v", apiName))
case watch.Added, watch.Modified:
if crd := event.Object.(*apiextensionsv1.CustomResourceDefinition); crd.Name == apiName &&
slices.ContainsFunc(crd.Status.Conditions, func(condition apiextensionsv1.CustomResourceDefinitionCondition) bool {
return condition.Type == apiextensionsv1.Established && condition.Status == apiextensionsv1.ConditionTrue
}) {
setupLog.Info(fmt.Sprintf("API %v installed, invoking deferred action", apiName))
action()
return
}
}
}
}
}