forked from kyma-project/lifecycle-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkyma_controller.go
430 lines (358 loc) · 15.5 KB
/
kyma_controller.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
/*
Copyright 2022.
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 controllers
import (
"context"
"errors"
"fmt"
"time"
"github.com/kyma-project/lifecycle-manager/pkg/log"
"k8s.io/client-go/rest"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/kyma-project/lifecycle-manager/api/v1alpha1"
"github.com/kyma-project/lifecycle-manager/pkg/adapter"
"github.com/kyma-project/lifecycle-manager/pkg/catalog"
"github.com/kyma-project/lifecycle-manager/pkg/channel"
"github.com/kyma-project/lifecycle-manager/pkg/module/common"
"github.com/kyma-project/lifecycle-manager/pkg/module/parse"
"github.com/kyma-project/lifecycle-manager/pkg/module/sync"
"github.com/kyma-project/lifecycle-manager/pkg/remote"
"github.com/kyma-project/lifecycle-manager/pkg/signature"
"github.com/kyma-project/lifecycle-manager/pkg/status"
"github.com/kyma-project/lifecycle-manager/pkg/watcher"
"k8s.io/client-go/tools/record"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
ctrlLog "sigs.k8s.io/controller-runtime/pkg/log"
)
type EventErrorType string
const (
ModuleReconciliationError EventErrorType = "ModuleReconciliationError"
SyncContextError EventErrorType = "SyncContextError"
DeletionError EventErrorType = "DeletionError"
)
type RequeueIntervals struct {
Success time.Duration
}
// KymaReconciler reconciles a Kyma object.
type KymaReconciler struct {
client.Client
record.EventRecorder
RequeueIntervals
signature.VerificationSettings
SKRWebhookManager watcher.SKRWebhookManager
KcpRestConfig *rest.Config
RemoteClientCache *remote.ClientCache
}
//nolint:lll
//+kubebuilder:rbac:groups=operator.kyma-project.io,resources=kymas,verbs=get;list;watch;create;update;patch;delete
//+kubebuilder:rbac:groups=operator.kyma-project.io,resources=kymas/status,verbs=get;update;patch
//+kubebuilder:rbac:groups=operator.kyma-project.io,resources=kymas/finalizers,verbs=update
//+kubebuilder:rbac:groups="",resources=services,verbs=get;list;watch
//+kubebuilder:rbac:groups="",resources=events,verbs=create;patch;get;list;watch
//+kubebuilder:rbac:groups="",resources=secrets,verbs=get;list;watch
//+kubebuilder:rbac:groups="",resources=configmaps,verbs=get;list;watch;create;update;patch;delete
//+kubebuilder:rbac:groups=operator.kyma-project.io,resources=moduletemplates,verbs=get;list;watch;create;update;patch;delete
//+kubebuilder:rbac:groups=operator.kyma-project.io,resources=moduletemplates/finalizers,verbs=update
//+kubebuilder:rbac:groups=apiextensions.k8s.io,resources=customresourcedefinitions,verbs=get;list;watch
//+kubebuilder:rbac:groups=cert-manager.io,resources=issuers,verbs=get;list;watch
//+kubebuilder:rbac:groups=cert-manager.io,resources=certificates,verbs=get;list;create;update;delete;patch
// Reconcile is part of the main kubernetes reconciliation loop which aims to
// move the current state of the cluster closer to the desired state.
func (r *KymaReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
logger := ctrlLog.FromContext(ctx)
logger.V(log.InfoLevel).Info("reconciling")
ctx = adapter.ContextWithRecorder(ctx, r.EventRecorder)
// check if kyma resource exists
kyma := &v1alpha1.Kyma{}
if err := r.Get(ctx, req.NamespacedName, kyma); err != nil {
// we'll ignore not-found errors, since they can't be fixed by an immediate
// requeue (we'll need to wait for a new notification), and we can get them
// on deleted requests.
logger.Info("Deleted successfully!")
return ctrl.Result{}, client.IgnoreNotFound(err) //nolint:wrapcheck
}
if kyma.SkipReconciliation() {
logger.V(log.DebugLevel).Info("kyma gets skipped because of label")
return ctrl.Result{RequeueAfter: r.RequeueIntervals.Success}, nil
}
if kyma.Spec.Sync.Enabled {
var err error
if ctx, err = remote.InitializeSyncContext(ctx, kyma,
remote.NewClientWithConfig(r.Client, r.KcpRestConfig), r.RemoteClientCache); err != nil {
err := fmt.Errorf("initializing sync context failed: %w", err)
r.Event(kyma, "Warning", string(SyncContextError), err.Error())
return r.CtrlErr(ctx, kyma, err)
}
}
// check if deletionTimestamp is set, retry until it gets fully deleted
if !kyma.DeletionTimestamp.IsZero() && kyma.Status.State != v1alpha1.StateDeleting {
return r.deleteKyma(ctx, kyma)
}
// check finalizer
if kyma.CheckLabelsAndFinalizers() {
if err := r.Update(ctx, kyma); err != nil {
return r.CtrlErr(ctx, kyma, fmt.Errorf("could not update kyma after finalizer check: %w", err))
}
return ctrl.Result{}, nil
}
// create a remote synchronization context, and update the remote kyma with the state of the control plane
if kyma.Spec.Sync.Enabled {
if err := r.syncRemoteKymaSpecAndStatus(ctx, kyma); err != nil {
return r.CtrlErr(ctx, kyma, fmt.Errorf("could not synchronize remote kyma: %w", err))
}
}
// state handling
return r.stateHandling(ctx, kyma)
}
func (r *KymaReconciler) deleteKyma(ctx context.Context, kyma *v1alpha1.Kyma) (ctrl.Result, error) {
if err := r.TriggerKymaDeletion(ctx, kyma); err != nil {
return r.CtrlErr(ctx, kyma, err)
}
// if the status is not yet set to deleting, also update the status of the control-plane
// in the next sync cycle
if err := status.Helper(r).UpdateStatusForExistingModules(
ctx, kyma, v1alpha1.StateDeleting, "waiting for modules to be deleted",
); err != nil {
return r.CtrlErr(ctx, kyma, fmt.Errorf(
"could not update kyma status after triggering deletion: %w", err))
}
return ctrl.Result{}, nil
}
func (r *KymaReconciler) CtrlErr(ctx context.Context, kyma *v1alpha1.Kyma, err error) (ctrl.Result, error) {
return ctrl.Result{Requeue: true},
r.UpdateStatusWithEventFromErr(ctx, kyma, v1alpha1.StateError, err)
}
// synchronizeRemote replaces the given pointer to the Kyma Instance with an instance that contains the merged
// specification of the Control Plane and the Runtime.
func (r *KymaReconciler) syncRemoteKymaSpecAndStatus(
ctx context.Context, controlPlaneKyma *v1alpha1.Kyma,
) error {
syncContext := remote.SyncContextFromContext(ctx)
remoteKyma, err := syncContext.CreateOrFetchRemoteKyma(ctx, controlPlaneKyma)
if err != nil {
return fmt.Errorf("could not create or fetch remote kyma: %w", err)
}
if err := syncContext.SynchronizeRemoteKyma(ctx, controlPlaneKyma, remoteKyma); err != nil {
return fmt.Errorf("sync run failure: %w", err)
}
syncContext.ReplaceWithVirtualKyma(controlPlaneKyma, remoteKyma)
return nil
}
func (r *KymaReconciler) syncModuleCatalog(ctx context.Context, kyma *v1alpha1.Kyma) error {
if !kyma.Spec.Sync.Enabled || !kyma.Spec.Sync.ModuleCatalog {
return nil
}
kyma.UpdateCondition(v1alpha1.ConditionReasonModuleCatalogIsReady, metav1.ConditionFalse)
moduleTemplateList := &v1alpha1.ModuleTemplateList{}
if err := r.List(ctx, moduleTemplateList, &client.ListOptions{}); err != nil {
return fmt.Errorf("could not aggregate module templates for module catalog sync: %w", err)
}
if err := catalog.NewRemoteCatalogFromKyma(kyma).CreateOrUpdate(ctx, moduleTemplateList); err != nil {
return fmt.Errorf("could not synchronize remote module catalog: %w", err)
}
kyma.UpdateCondition(v1alpha1.ConditionReasonModuleCatalogIsReady, metav1.ConditionTrue)
return nil
}
func (r *KymaReconciler) stateHandling(ctx context.Context, kyma *v1alpha1.Kyma) (ctrl.Result, error) {
switch kyma.Status.State {
case "":
return ctrl.Result{}, r.HandleInitialState(ctx, kyma)
case v1alpha1.StateProcessing:
return ctrl.Result{Requeue: true}, r.HandleProcessingState(ctx, kyma)
case v1alpha1.StateDeleting:
if dependentsDeleting, err := r.HandleDeletingState(ctx, kyma); err != nil {
return ctrl.Result{}, err
} else if dependentsDeleting {
return ctrl.Result{Requeue: true}, nil
}
case v1alpha1.StateError:
return ctrl.Result{Requeue: true}, r.HandleProcessingState(ctx, kyma)
case v1alpha1.StateReady:
return ctrl.Result{RequeueAfter: r.RequeueIntervals.Success}, r.HandleProcessingState(ctx, kyma)
}
return ctrl.Result{}, nil
}
func (r *KymaReconciler) HandleInitialState(ctx context.Context, kyma *v1alpha1.Kyma) error {
return r.UpdateStatusWithEvent(ctx, kyma, v1alpha1.StateProcessing, "started processing")
}
func (r *KymaReconciler) HandleProcessingState(ctx context.Context, kyma *v1alpha1.Kyma) error {
logger := ctrlLog.FromContext(ctx)
conditionReason := v1alpha1.ConditionReasonModulesAreReady
conditionStatus := metav1.ConditionTrue
if err := r.syncModules(ctx, kyma); err != nil {
conditionStatus = metav1.ConditionFalse
kyma.UpdateCondition(conditionReason, conditionStatus)
return r.UpdateStatusWithEventFromErr(ctx, kyma, v1alpha1.StateError, err)
}
for i := range kyma.Status.Modules {
moduleStatus := &kyma.Status.Modules[i]
if moduleStatus.State != v1alpha1.StateReady {
conditionStatus = metav1.ConditionFalse
break
}
}
kyma.UpdateCondition(conditionReason, conditionStatus)
if kyma.Spec.Sync.Enabled && r.SKRWebhookManager != nil {
if err := r.SKRWebhookManager.Install(ctx, kyma); err != nil {
kyma.UpdateCondition(v1alpha1.ConditionReasonSKRWebhookIsReady, metav1.ConditionFalse)
// TODO Move installation to own go-routine to not block installation
// + consider introducing own condition for CertificateReady Status
// https://github.com/kyma-project/lifecycle-manager/issues/376
if err != nil && !errors.Is(err, &watcher.CertificateNotReadyError{}) {
return r.UpdateStatusWithEventFromErr(ctx, kyma, v1alpha1.StateError,
fmt.Errorf("error while installing Watcher Webhook Chart: %w", err))
}
}
}
// set ready condition if applicable
if kyma.AllReadyConditionsTrue() {
const message = "kyma is ready"
if kyma.Status.State != v1alpha1.StateReady {
logger.Info(message)
}
return r.UpdateStatus(ctx, kyma, v1alpha1.StateReady, message)
}
if err := r.UpdateStatus(ctx, kyma, v1alpha1.StateProcessing, "waiting for all modules to become ready"); err != nil {
return fmt.Errorf("error while updating status for condition change: %w", err)
}
return nil
}
func (r *KymaReconciler) syncModules(ctx context.Context, kyma *v1alpha1.Kyma) error {
if err := r.syncModuleCatalog(ctx, kyma); err != nil {
return fmt.Errorf("could not synchronize remote module catalog: %w", err)
}
// these are the actual modules
modules, err := r.GenerateModulesFromTemplate(ctx, kyma)
if err != nil {
return fmt.Errorf("error while fetching modules during processing: %w", err)
}
runner := sync.New(r)
if err := runner.Sync(ctx, kyma, modules); err != nil {
return fmt.Errorf("sync failed: %w", err)
}
runner.SyncModuleStatus(ctx, kyma, modules)
// If module get removed from kyma, the module deletion happens here.
if err := r.DeleteNoLongerExistingModules(ctx, kyma); err != nil {
return fmt.Errorf("error while syncing conditions during deleting non exists modules: %w", err)
}
return nil
}
func (r *KymaReconciler) HandleDeletingState(ctx context.Context, kyma *v1alpha1.Kyma) (bool, error) {
logger := ctrlLog.FromContext(ctx).V(log.InfoLevel)
if kyma.Spec.Sync.Enabled && r.SKRWebhookManager != nil {
if err := r.SKRWebhookManager.Remove(ctx, kyma); err != nil {
// here we expect that an error is normal and means we have to try again if it didn't work
r.Event(kyma, "Normal", "WebhookChartRemoval", err.Error())
return true, nil
}
}
if kyma.Spec.Sync.Enabled {
if err := catalog.NewRemoteCatalogFromKyma(kyma).Delete(ctx); err != nil {
err := fmt.Errorf("could not delete remote module catalog: %w", err)
r.Event(kyma, "Warning", string(DeletionError), err.Error())
return false, err
}
r.RemoteClientCache.Del(client.ObjectKeyFromObject(kyma))
if err := remote.RemoveFinalizerFromRemoteKyma(ctx, kyma); client.IgnoreNotFound(err) != nil {
err := fmt.Errorf("error while trying to remove finalizer from remote: %w", err)
r.Event(kyma, "Warning", string(DeletionError), err.Error())
return false, err
}
logger.Info("removed remote finalizer")
}
controllerutil.RemoveFinalizer(kyma, v1alpha1.Finalizer)
if err := r.Update(ctx, kyma); err != nil {
err := fmt.Errorf("error while trying to udpate kyma during deletion: %w", err)
r.Event(kyma, "Warning", string(DeletionError), err.Error())
return false, err
}
return false, nil
}
func (r *KymaReconciler) TriggerKymaDeletion(ctx context.Context, kyma *v1alpha1.Kyma) error {
logger := ctrlLog.FromContext(ctx).V(log.InfoLevel)
if kyma.Spec.Sync.Enabled {
if err := remote.DeleteRemotelySyncedKyma(ctx, kyma); client.IgnoreNotFound(err) != nil {
logger.Error(err, "Failed to be deleted remotely!")
return fmt.Errorf("error occurred while trying to delete remotely synced kyma: %w", err)
}
logger.Info("Successfully deleted remotely!")
}
return nil
}
func (r *KymaReconciler) UpdateStatus(
ctx context.Context, kyma *v1alpha1.Kyma, state v1alpha1.State, message string,
) error {
if err := status.Helper(r).UpdateStatusForExistingModules(ctx, kyma, state, message); err != nil {
return fmt.Errorf("error while updating status to %s because of %s: %w", state, message, err)
}
return nil
}
func (r *KymaReconciler) UpdateStatusWithEvent(
ctx context.Context, kyma *v1alpha1.Kyma, state v1alpha1.State, message string,
) error {
if err := r.UpdateStatus(ctx, kyma, state, message); err != nil {
return err
}
r.Event(kyma, "Normal", "StatusUpdate", message)
return nil
}
func (r *KymaReconciler) UpdateStatusWithEventFromErr(
ctx context.Context, kyma *v1alpha1.Kyma, state v1alpha1.State, err error,
) error {
if err := status.Helper(r).UpdateStatusForExistingModules(ctx, kyma, state, err.Error()); err != nil {
return fmt.Errorf("error while updating status to %s: %w", state, err)
}
r.Event(kyma, "Warning", string(ModuleReconciliationError), err.Error())
return nil
}
func (r *KymaReconciler) GenerateModulesFromTemplate(ctx context.Context, kyma *v1alpha1.Kyma) (common.Modules, error) {
// fetch templates
templates, err := channel.GetTemplates(ctx, r, kyma)
if err != nil {
return nil, fmt.Errorf("templates could not be fetched: %w", err)
}
verification, err := r.VerificationSettings.NewVerification(ctx, kyma.GetNamespace())
if err != nil {
return nil, err
}
// these are the actual modules
modules, err := parse.GenerateModulesFromTemplates(kyma, templates, verification)
if err != nil {
return nil, fmt.Errorf("cannot generate modules: %w", err)
}
return modules, nil
}
func (r *KymaReconciler) DeleteNoLongerExistingModules(ctx context.Context, kyma *v1alpha1.Kyma) error {
moduleStatus := kyma.GetNoLongerExistingModuleStatus()
var err error
if len(moduleStatus) == 0 {
return nil
}
for i := range moduleStatus {
moduleStatus := moduleStatus[i]
err = r.deleteModule(ctx, moduleStatus)
}
if client.IgnoreNotFound(err) != nil {
return fmt.Errorf("error deleting module %w", err)
}
return nil
}
func (r *KymaReconciler) deleteModule(ctx context.Context, moduleStatus v1alpha1.ModuleStatus) error {
manifest := metav1.PartialObjectMetadata{}
manifest.SetGroupVersionKind(moduleStatus.Manifest.GroupVersionKind())
manifest.SetNamespace(moduleStatus.Manifest.GetNamespace())
manifest.SetName(moduleStatus.Manifest.GetName())
return r.Delete(ctx, &manifest, &client.DeleteOptions{})
}