generated from cybozu-go/neco-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnamespace_controller.go
429 lines (367 loc) · 13.4 KB
/
namespace_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
package controllers
import (
"context"
"fmt"
"path"
accuratev2 "github.com/cybozu-go/accurate/api/accurate/v2"
utilerrors "github.com/cybozu-go/accurate/internal/util/errors"
"github.com/cybozu-go/accurate/pkg/constants"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/equality"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/types"
corev1ac "k8s.io/client-go/applyconfigurations/core/v1"
"k8s.io/client-go/util/workqueue"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/event"
"sigs.k8s.io/controller-runtime/pkg/handler"
"sigs.k8s.io/controller-runtime/pkg/log"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
)
// NamespaceReconciler reconciles a Namespace object
type NamespaceReconciler struct {
client.Client
ResourceCloner
LabelKeys []string
AnnotationKeys []string
SubNamespaceLabelKeys []string
SubNamespaceAnnotationKeys []string
Watched []*unstructured.Unstructured
}
var _ reconcile.Reconciler = &NamespaceReconciler{}
// Reconcile implements reconcile.Reconciler interface.
func (r *NamespaceReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
logger := log.FromContext(ctx)
ns := &corev1.Namespace{}
if err := r.Get(ctx, req.NamespacedName, ns); err != nil {
return ctrl.Result{}, client.IgnoreNotFound(err)
}
if ns.DeletionTimestamp != nil {
return ctrl.Result{}, nil
}
if err := r.reconcile(ctx, ns); err != nil {
logger.Error(err, "failed to reconcile a namespace")
return ctrl.Result{}, fmt.Errorf("failed to reconcile a namespace: %w", err)
}
return ctrl.Result{}, nil
}
func (r *NamespaceReconciler) reconcile(ctx context.Context, ns *corev1.Namespace) error {
if parent, ok := ns.Labels[constants.LabelParent]; ok {
return r.reconcileSubNamespace(ctx, ns, parent)
}
if tmpl, ok := ns.Labels[constants.LabelTemplate]; ok {
if err := r.reconcileInstanceNamespace(ctx, ns, tmpl); err != nil {
return err
}
// a template instance may also be a root or a template namespace, so don't return here.
} else {
// Here, ns is neither a sub-namespace nor a template instance.
// Since there is no parent|template namespace for this namespace,
// propagated resources in this namespace, if any, should be deleted.
if err := r.deletePropagatedResources(ctx, ns); err != nil {
return err
}
}
switch ns.Labels[constants.LabelType] {
case constants.NSTypeTemplate:
return r.reconcileTemplateNamespace(ctx, ns)
case constants.NSTypeRoot:
return r.reconcileRootNamespace(ctx, ns)
}
return nil
}
func (r *NamespaceReconciler) propagateMeta(ctx context.Context, ns, parent *corev1.Namespace) error {
labels := make(map[string]string)
annotations := make(map[string]string)
for k, v := range parent.Labels {
if ok := r.matchLabelKey(k); ok {
labels[k] = v
}
}
for k, v := range parent.Annotations {
if ok := r.matchAnnotationKey(k); ok {
annotations[k] = v
}
}
if _, ok := ns.Labels[constants.LabelParent]; ok {
subNS := &accuratev2.SubNamespace{}
err := r.Get(ctx, types.NamespacedName{Name: ns.Name, Namespace: parent.Name}, subNS)
if err != nil {
if !apierrors.IsNotFound(err) {
return fmt.Errorf("failed to get sub namespace %s/%s: %w", ns.Name, parent.Name, err)
}
} else {
for k, v := range subNS.Spec.Labels {
if ok := r.matchSubNamespaceLabelKey(k); ok {
labels[k] = v
}
}
for k, v := range subNS.Spec.Annotations {
if ok := r.matchSubNamespaceAnnotationKey(k); ok {
annotations[k] = v
}
}
}
// Must ensure we set all fields we care for, also labels added when creating namespace
labels[constants.LabelCreatedBy] = constants.CreatedBy
labels[constants.LabelParent] = parent.Name
}
// Ensure that managed fields are upgraded to SSA before the following SSA.
// TODO(migration): This code could be removed after a couple of releases.
if err := upgradeManagedFields(ctx, r.Client, ns); err != nil {
return err
}
ac := corev1ac.Namespace(ns.Name).
WithLabels(labels).
WithAnnotations(annotations)
ns, p, err := newNamespacePatch(ac)
if err != nil {
return err
}
if err := r.Patch(ctx, ns, p, fieldOwner, client.ForceOwnership); err != nil {
return fmt.Errorf("failed to propagate labels/annotations for namespace %s: %w", ns.Name, err)
}
return nil
}
func (r *NamespaceReconciler) matchLabelKey(key string) bool {
return matchKey(key, r.LabelKeys)
}
func (r *NamespaceReconciler) matchAnnotationKey(key string) bool {
return matchKey(key, r.AnnotationKeys)
}
func (r *NamespaceReconciler) matchSubNamespaceLabelKey(key string) bool {
return matchKey(key, r.SubNamespaceLabelKeys)
}
func (r *NamespaceReconciler) matchSubNamespaceAnnotationKey(key string) bool {
return matchKey(key, r.SubNamespaceAnnotationKeys)
}
func (r *NamespaceReconciler) propagateResource(ctx context.Context, res *unstructured.Unstructured, parent, ns string) error {
logger := log.FromContext(ctx)
gvk := res.GroupVersionKind()
gvkStr := gvk.String()
gvk.Kind = gvk.Kind + "List"
l := &unstructured.UnstructuredList{}
l.SetGroupVersionKind(gvk)
cl := l.DeepCopy()
if err := r.List(ctx, cl, client.MatchingFields{constants.PropagateKey: constants.PropagateCreate}, client.InNamespace(parent)); err != nil {
return fmt.Errorf("failed to list %s in %s with propagate=create: %w", gvkStr, parent, err)
}
for i := range cl.Items {
pres := &cl.Items[i]
if err := r.propagateCreate(ctx, pres, ns); err != nil {
return fmt.Errorf("failed to propagate resource %s/%s of %s with propagate=create: %w", ns, pres.GetName(), gvkStr, err)
}
}
ul := l.DeepCopy()
if err := r.List(ctx, ul, client.MatchingFields{constants.PropagateKey: constants.PropagateUpdate}, client.InNamespace(parent)); err != nil {
return fmt.Errorf("failed to list %s in %s with propagate=update: %w", gvkStr, parent, err)
}
presNames := make(map[string]bool)
for i := range ul.Items {
pres := &ul.Items[i]
presNames[pres.GetName()] = true
if err := r.propagateUpdate(ctx, pres, ns); err != nil {
return fmt.Errorf("failed to propagate resource %s/%s of %s with propagate=update: %w", ns, pres.GetName(), gvkStr, err)
}
}
ul2 := l.DeepCopy()
if err := r.List(ctx, ul2, client.MatchingFields{constants.PropagateKey: constants.PropagateUpdate}, client.InNamespace(ns)); err != nil {
return fmt.Errorf("failed to list %s in %s with propagate=update: %w", gvkStr, ns, err)
}
for i := range ul2.Items {
cres := &ul2.Items[i]
from := cres.GetAnnotations()[constants.AnnFrom]
if from == "" {
// don't delete origins
continue
}
if from == parent && presNames[cres.GetName()] {
continue
}
if err := r.Delete(ctx, cres); err != nil {
return fmt.Errorf("failed to delete stale resource %s/%s of %s: %w", ns, cres.GetName(), gvkStr, err)
}
logger.Info("deleted a resource", "namespace", cres.GetNamespace(), "name", cres.GetName(), "gvk", gvkStr)
}
return nil
}
func (r *NamespaceReconciler) propagateCreate(ctx context.Context, res *unstructured.Unstructured, ns string) error {
gvk := res.GroupVersionKind()
c := &unstructured.Unstructured{}
c.SetGroupVersionKind(gvk)
err := r.Get(ctx, client.ObjectKey{Namespace: ns, Name: res.GetName()}, c)
if err == nil {
return nil
}
if !apierrors.IsNotFound(err) {
return err
}
if err := r.Create(ctx, r.cloneResource(res, ns)); err != nil {
return utilerrors.Ignore(err, utilerrors.IsNamespaceTerminating)
}
logger := log.FromContext(ctx)
logger.Info("created a resource", "namespace", ns, "name", res.GetName(), "gvk", gvk.String())
return nil
}
func (r *NamespaceReconciler) propagateUpdate(ctx context.Context, res *unstructured.Unstructured, ns string) error {
logger := log.FromContext(ctx)
gvk := res.GroupVersionKind()
c := &unstructured.Unstructured{}
c.SetGroupVersionKind(gvk)
err := r.Get(ctx, client.ObjectKey{Namespace: ns, Name: res.GetName()}, c)
if err != nil {
if !apierrors.IsNotFound(err) {
return err
}
if err := r.Create(ctx, r.cloneResource(res, ns)); err != nil {
return utilerrors.Ignore(err, utilerrors.IsNamespaceTerminating)
}
logger.Info("created a resource", "namespace", ns, "name", res.GetName(), "gvk", gvk.String())
return nil
}
c2 := r.cloneResource(res, ns)
// Ensure that managed fields are upgraded to SSA before the following SSA.
// TODO(migration): This code could be removed after a couple of releases.
if err := upgradeManagedFields(ctx, r.Client, c2); err != nil {
return err
}
if equality.Semantic.Equalities.DeepDerivative(c2, c) {
return nil
}
if err := r.Patch(ctx, c2, applyPatch{c2}, fieldOwner, client.ForceOwnership); err != nil {
return fmt.Errorf("failed to apply %s/%s: %w", c2.GetNamespace(), c2.GetName(), err)
}
logger.Info("applied a resource", "namespace", ns, "name", res.GetName(), "gvk", gvk.String())
return nil
}
func (r *NamespaceReconciler) deleteResource(ctx context.Context, res *unstructured.Unstructured, ns string) error {
logger := log.FromContext(ctx)
gvk := res.GroupVersionKind()
gvkStr := gvk.String()
gvk.Kind = gvk.Kind + "List"
l := &unstructured.UnstructuredList{}
l.SetGroupVersionKind(gvk)
if err := r.List(ctx, l, client.MatchingFields{constants.PropagateKey: constants.PropagateUpdate}, client.InNamespace(ns)); err != nil {
return fmt.Errorf("failed to list %s in %s: %w", gvkStr, ns, err)
}
for i := range l.Items {
obj := &l.Items[i]
from := obj.GetAnnotations()[constants.AnnFrom]
if from == "" {
// don't delete origins
continue
}
if err := r.Delete(ctx, obj); err != nil {
return fmt.Errorf("failed to delete %s/%s of %s: %w", ns, obj.GetName(), gvkStr, err)
}
logger.Info("deleted a resource", "namespace", ns, "name", obj.GetName(), "gvk", gvkStr)
}
return nil
}
func (r *NamespaceReconciler) deletePropagatedResources(ctx context.Context, ns *corev1.Namespace) error {
for _, res := range r.Watched {
if err := r.deleteResource(ctx, res, ns.Name); err != nil {
return err
}
}
return nil
}
func (r *NamespaceReconciler) reconcileSubNamespace(ctx context.Context, ns *corev1.Namespace, parent string) error {
parentNS := &corev1.Namespace{}
if err := r.Get(ctx, client.ObjectKey{Name: parent}, parentNS); err != nil {
return fmt.Errorf("failed to get parent namespace %s: %w", parent, err)
}
if err := r.propagateMeta(ctx, ns, parentNS); err != nil {
return err
}
children := &corev1.NamespaceList{}
if err := r.List(ctx, children, client.MatchingFields{constants.NamespaceParentKey: ns.Name}); err != nil {
return fmt.Errorf("failed to list the children: %w", err)
}
for i := range children.Items {
child := &children.Items[i]
if err := r.propagateMeta(ctx, child, ns); err != nil {
return err
}
}
for _, res := range r.Watched {
if err := r.propagateResource(ctx, res, parent, ns.Name); err != nil {
return err
}
}
return nil
}
func (r *NamespaceReconciler) reconcileRootNamespace(ctx context.Context, ns *corev1.Namespace) error {
subs := &corev1.NamespaceList{}
if err := r.List(ctx, subs, client.MatchingFields{constants.NamespaceParentKey: ns.Name}); err != nil {
return fmt.Errorf("failed to list sub namespaces: %w", err)
}
for i := range subs.Items {
sub := &subs.Items[i]
if err := r.propagateMeta(ctx, sub, ns); err != nil {
return err
}
}
return nil
}
func (r *NamespaceReconciler) reconcileInstanceNamespace(ctx context.Context, ns *corev1.Namespace, tmpl string) error {
tmplNS := &corev1.Namespace{}
if err := r.Get(ctx, client.ObjectKey{Name: tmpl}, tmplNS); err != nil {
return fmt.Errorf("failed to get template namespace %s: %w", tmpl, err)
}
if err := r.propagateMeta(ctx, ns, tmplNS); err != nil {
return err
}
for _, res := range r.Watched {
if err := r.propagateResource(ctx, res, tmpl, ns.Name); err != nil {
return err
}
}
return nil
}
func (r *NamespaceReconciler) reconcileTemplateNamespace(ctx context.Context, ns *corev1.Namespace) error {
instances := &corev1.NamespaceList{}
if err := r.List(ctx, instances, client.MatchingFields{constants.NamespaceTemplateKey: ns.Name}); err != nil {
return fmt.Errorf("failed to list instance namespaces: %w", err)
}
for i := range instances.Items {
instance := &instances.Items[i]
if err := r.propagateMeta(ctx, instance, ns); err != nil {
return err
}
}
return nil
}
// SetupWithManager sets up the controller with the Manager.
func (r *NamespaceReconciler) SetupWithManager(mgr ctrl.Manager) error {
subNSHandler := func(o client.Object, q workqueue.TypedRateLimitingInterface[reconcile.Request]) {
q.Add(reconcile.Request{NamespacedName: types.NamespacedName{
Name: o.GetName(),
}})
}
return ctrl.NewControllerManagedBy(mgr).
For(&corev1.Namespace{}).
Watches(&accuratev2.SubNamespace{}, handler.Funcs{
CreateFunc: func(ctx context.Context, ev event.TypedCreateEvent[client.Object], q workqueue.TypedRateLimitingInterface[reconcile.Request]) {
subNSHandler(ev.Object, q)
},
UpdateFunc: func(ctx context.Context, ev event.TypedUpdateEvent[client.Object], q workqueue.TypedRateLimitingInterface[reconcile.Request]) {
if ev.ObjectNew.GetDeletionTimestamp() != nil {
return
}
subNSHandler(ev.ObjectOld, q)
},
}).
Complete(r)
}
func matchKey(key string, list []string) bool {
for _, l := range list {
// The glob pattern has been verified to be in the valid format when reading the config file.
if ok, _ := path.Match(l, key); ok {
return true
}
}
return false
}