forked from migtools/mig-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigmigration_controller.go
422 lines (373 loc) · 11.6 KB
/
migmigration_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
/*
Copyright 2020 Red Hat 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 migmigration
import (
"context"
"fmt"
"net/http"
"time"
liberr "github.com/konveyor/controller/pkg/error"
"github.com/konveyor/controller/pkg/logging"
migapi "github.com/konveyor/mig-controller/pkg/apis/migration/v1alpha1"
"github.com/konveyor/mig-controller/pkg/errorutil"
migref "github.com/konveyor/mig-controller/pkg/reference"
"github.com/opentracing/opentracing-go"
kapi "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
"k8s.io/client-go/tools/record"
k8sclient "sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
)
var (
sink = logging.WithName("migration")
log = sink.Real
)
// Add creates a new MigMigration Controller and adds it to the Manager with default RBAC. The Manager will set fields on the Controller
// and Start it when the Manager is Started.
func Add(mgr manager.Manager) error {
return add(mgr, newReconciler(mgr))
}
// newReconciler returns a new reconcile.Reconciler
func newReconciler(mgr manager.Manager) reconcile.Reconciler {
return &ReconcileMigMigration{
Client: mgr.GetClient(),
scheme: mgr.GetScheme(),
EventRecorder: mgr.GetEventRecorderFor("migmigration_controller"),
}
}
// add adds a new Controller to mgr with r as the reconcile.Reconciler
func add(mgr manager.Manager, r reconcile.Reconciler) error {
// Create a new controller
c, err := controller.New("migmigration-controller", mgr, controller.Options{Reconciler: r})
if err != nil {
return err
}
// Watch for changes to MigMigration
err = c.Watch(
source.Kind(mgr.GetCache(), &migapi.MigMigration{}),
&handler.EnqueueRequestForObject{},
&MigrationPredicate{
Namespace: migapi.OpenshiftMigrationNamespace,
})
if err != nil {
return err
}
// Watch for changes to MigPlans referenced by MigMigrations
err = c.Watch(
source.Kind(mgr.GetCache(), &migapi.MigPlan{}),
handler.EnqueueRequestsFromMapFunc(func(_ context.Context, a k8sclient.Object) []reconcile.Request {
return migref.GetRequests(a, migapi.OpenshiftMigrationNamespace, migapi.MigMigration{})
}),
&PlanPredicate{
Namespace: migapi.OpenshiftMigrationNamespace,
})
if err != nil {
return err
}
// Watch for changes to DirectImageMigrations
err = c.Watch(source.Kind(mgr.GetCache(), &migapi.DirectImageMigration{}),
handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetClient().RESTMapper(), &migapi.MigMigration{}, handler.OnlyControllerOwner()),
&migref.MigrationNamespacePredicate{Namespace: migapi.OpenshiftMigrationNamespace})
if err != nil {
return err
}
// Watch for changes to DirectImageMigrations
err = c.Watch(source.Kind(mgr.GetCache(), &migapi.DirectVolumeMigration{}),
handler.EnqueueRequestForOwner(mgr.GetScheme(), mgr.GetClient().RESTMapper(), &migapi.MigMigration{}, handler.OnlyControllerOwner()),
&migref.MigrationNamespacePredicate{Namespace: migapi.OpenshiftMigrationNamespace})
if err != nil {
return err
}
// Indexes
indexer := mgr.GetFieldIndexer()
// Plan
err = indexer.IndexField(
context.Background(),
&migapi.MigMigration{},
migapi.PlanIndexField,
func(rawObj k8sclient.Object) []string {
m, cast := rawObj.(*migapi.MigMigration)
if !cast {
return nil
}
ref := m.Spec.MigPlanRef
if !migref.RefSet(ref) {
return nil
}
return []string{
fmt.Sprintf("%s/%s", ref.Namespace, ref.Name),
}
})
if err != nil {
return err
}
// Event
err = indexer.IndexField(
context.TODO(),
&kapi.Event{},
"involvedObject.uid",
func(rawObj k8sclient.Object) []string {
e, cast := rawObj.(*kapi.Event)
if !cast {
return nil
}
return []string{
string(e.InvolvedObject.UID),
}
})
if err != nil {
return err
}
// Gather migration metrics every 10 seconds
recordMetrics(mgr.GetClient())
return nil
}
var _ reconcile.Reconciler = &ReconcileMigMigration{}
// ReconcileMigMigration reconciles a MigMigration object
type ReconcileMigMigration struct {
k8sclient.Client
record.EventRecorder
httpClient http.Client
scheme *runtime.Scheme
tracer opentracing.Tracer
}
// Reconcile performs Migrations based on the data in MigMigration
func (r *ReconcileMigMigration) Reconcile(ctx context.Context, request reconcile.Request) (reconcile.Result, error) {
var err error
// Set values.
log = logging.WithName("migration", "migMigration", request.Name).Real
// Retrieve the MigMigration being reconciled
migration := &migapi.MigMigration{}
err = r.Get(context.TODO(), request.NamespacedName, migration)
if err != nil {
if errors.IsNotFound(err) {
err = r.deleted()
return reconcile.Result{Requeue: false}, nil
}
log.Info("Error getting migmigration for reconcile, requeueing.")
sink.Trace(err)
return reconcile.Result{Requeue: true}, nil
}
// Get jaeger spans for migration and reconcile, add to ctx
_, reconcileSpan := r.initTracer(migration)
if reconcileSpan != nil {
ctx = opentracing.ContextWithSpan(ctx, reconcileSpan)
defer reconcileSpan.Finish()
}
// Ensure required labels are present on migmigration
err = r.ensureLabels(migration)
if err != nil {
log.Info("Error setting debug labels, requeueing.")
sink.Trace(err)
return reconcile.Result{Requeue: true}, err
}
// Report reconcile error.
defer func() {
// Only log critical conditions.
critConditions := migration.Status.Conditions.FindConditionByCategory(Critical)
if len(critConditions) > 0 {
log.Info("CR", "critical_conditions", critConditions)
}
migration.Status.Conditions.RecordEvents(migration, r.EventRecorder)
if err == nil || errors.IsConflict(errorutil.Unwrap(err)) {
return
}
migration.Status.SetReconcileFailed(err)
err := r.Update(context.TODO(), migration)
if err != nil {
log.Error(err, "Error updating resource on reconcile exit.")
sink.Trace(err)
return
}
}()
// Completed.
if migration.Status.Phase == Completed {
return reconcile.Result{Requeue: false}, nil
}
// Owner Reference
err = r.setOwnerReference(migration)
if err != nil {
log.Info("Failed to set owner references, requeuing.")
sink.Trace(err)
return reconcile.Result{Requeue: true}, err
}
// Begin staging conditions.
migration.Status.BeginStagingConditions()
// Validate
err = r.validate(ctx, migration)
if err != nil {
log.V(3).Info("Validation failed, requeueing")
sink.Trace(err)
return reconcile.Result{Requeue: true}, nil
}
// Default to PollReQ, can be overridden by r.postpone() or r.migrate()
requeueAfter := time.Duration(PollReQ)
// Ensure that migrations run serially ordered by when created
// and grouped with stage migrations followed by final migrations.
// Reconcile of a migration not in the desired order will be postponed.
if !migration.Status.HasBlockerCondition() {
requeueAfter, err = r.postpone(migration)
if err != nil {
log.Info("Failed to check if postpone required, requeueing")
sink.Trace(err)
return reconcile.Result{Requeue: true}, err
}
}
// Migrate
if !migration.Status.HasBlockerCondition() {
requeueAfter, err = r.migrate(ctx, migration)
if err != nil {
sink.Trace(err)
return reconcile.Result{Requeue: true}, nil
}
}
// Ready
migration.Status.SetReady(
migration.Status.Phase != Completed &&
!migration.Status.HasBlockerCondition(),
"The migration is ready.")
// End staging conditions.
migration.Status.EndStagingConditions()
// Apply changes.
migration.MarkReconciled()
err = r.Update(context.TODO(), migration)
if err != nil {
sink.Trace(err)
return reconcile.Result{Requeue: true}, nil
}
// Requeue
if requeueAfter > 0 {
return reconcile.Result{RequeueAfter: requeueAfter}, nil
}
return reconcile.Result{Requeue: false}, nil
}
// Determine if a migration should be postponed.
// Migrations run serially ordered by created timestamp and grouped
// with stage migrations followed by final migrations. A migration is
// postponed when not in the desired order.
// When postponed:
// - Returns: a requeueAfter as time.Duration, else 0 (not postponed).
// - Sets the `Postponed` condition.
func (r *ReconcileMigMigration) postpone(migration *migapi.MigMigration) (time.Duration, error) {
plan, err := migration.GetPlan(r)
if err != nil {
return 0, liberr.Wrap(err)
}
migrations, err := plan.ListMigrations(r)
if err != nil {
return 0, liberr.Wrap(err)
}
// Pending migrations.
pending := []types.UID{}
for _, m := range migrations {
if m.Status.Phase != Completed {
pending = append(pending, m.UID)
}
}
// This migration is next.
if len(pending) == 0 || pending[0] == migration.UID {
return 0, nil
}
// Postpone
requeueAfter := time.Second * 10
for position, uid := range pending {
if uid == migration.UID {
requeueAfter = time.Second * time.Duration(position*10)
break
}
}
migration.Status.SetCondition(migapi.Condition{
Type: Postponed,
Status: True,
Category: Critical,
Message: fmt.Sprintf("Postponed %d seconds to ensure migrations run serially and in order.", requeueAfter/time.Second),
})
return requeueAfter, nil
}
// Migration has been deleted.
// Delete the `HasFinalMigration` condition on all other uncompleted migrations.
func (r *ReconcileMigMigration) deleted() error {
migrations, err := migapi.ListMigrations(r)
if err != nil {
return liberr.Wrap(err)
}
for _, m := range migrations {
if m.Status.Phase == Completed || !m.Status.HasCondition(HasFinalMigration) {
continue
}
m.Status.DeleteCondition(HasFinalMigration)
err := r.Update(context.TODO(), &m)
if err != nil {
return liberr.Wrap(err)
}
}
return nil
}
// Set the owner reference is set to the plan.
func (r *ReconcileMigMigration) setOwnerReference(migration *migapi.MigMigration) error {
plan, err := migapi.GetPlan(r, migration.Spec.MigPlanRef)
if err != nil {
return liberr.Wrap(err)
}
if plan == nil {
return nil
}
for i := range migration.OwnerReferences {
ref := &migration.OwnerReferences[i]
if ref.Kind == plan.Kind {
ref.APIVersion = plan.APIVersion
ref.Name = plan.Name
ref.UID = plan.UID
return nil
}
}
migration.OwnerReferences = append(
migration.OwnerReferences,
v1.OwnerReference{
APIVersion: plan.APIVersion,
Kind: plan.Kind,
Name: plan.Name,
UID: plan.UID,
})
return nil
}
// Ensures that required labels and debug labels are present on migmigration
func (r *ReconcileMigMigration) ensureLabels(migration *migapi.MigMigration) error {
if migration.Labels == nil {
migration.Labels = make(map[string]string)
}
// Required labels
migration.Labels[migapi.MigMigrationUIDLabel] = string(migration.UID)
// Debug labels
if migration.Spec.MigPlanRef == nil {
return nil
}
if value, exists := migration.Labels[migapi.MigPlanDebugLabel]; exists {
if value == migration.Spec.MigPlanRef.Name {
return nil
}
}
migration.Labels[migapi.MigPlanDebugLabel] = migration.Spec.MigPlanRef.Name
err := r.Update(context.TODO(), migration)
if err != nil {
return liberr.Wrap(err)
}
return nil
}