forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.go
147 lines (134 loc) · 4.98 KB
/
add.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
// Copyright 2020 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
//
// 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 managedresource
import (
"context"
"time"
"github.com/go-logr/logr"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"
"k8s.io/utils/clock"
"k8s.io/utils/ptr"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/cluster"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
resourcesv1alpha1 "github.com/gardener/gardener/pkg/apis/resources/v1alpha1"
"github.com/gardener/gardener/pkg/controllerutils/mapper"
predicateutils "github.com/gardener/gardener/pkg/controllerutils/predicate"
reconcilerutils "github.com/gardener/gardener/pkg/controllerutils/reconciler"
resourcemanagerpredicate "github.com/gardener/gardener/pkg/resourcemanager/predicate"
)
// ControllerName is the name of the controller.
const ControllerName = "managedresource"
// AddToManager adds Reconciler to the given manager.
func (r *Reconciler) AddToManager(ctx context.Context, mgr manager.Manager, sourceCluster, targetCluster cluster.Cluster) error {
if r.SourceClient == nil {
r.SourceClient = sourceCluster.GetClient()
}
if r.TargetClient == nil {
r.TargetClient = targetCluster.GetClient()
}
if r.TargetScheme == nil {
r.TargetScheme = targetCluster.GetScheme()
}
if r.Clock == nil {
r.Clock = clock.RealClock{}
}
if r.TargetRESTMapper == nil {
r.TargetRESTMapper = targetCluster.GetRESTMapper()
}
if r.RequeueAfterOnDeletionPending == nil {
r.RequeueAfterOnDeletionPending = ptr.To(5 * time.Second)
}
c, err := builder.
ControllerManagedBy(mgr).
Named(ControllerName).
For(&resourcesv1alpha1.ManagedResource{}, builder.WithPredicates(
r.ClassFilter,
predicate.Or(
predicate.GenerationChangedPredicate{},
resourcemanagerpredicate.HasOperationAnnotation(),
resourcemanagerpredicate.ConditionStatusChanged(resourcesv1alpha1.ResourcesHealthy, resourcemanagerpredicate.ConditionChangedToUnhealthy),
resourcemanagerpredicate.NoLongerIgnored(),
// we need to reconcile once if the ManagedResource got marked as ignored in order to update the conditions
resourcemanagerpredicate.GotMarkedAsIgnored(),
),
// TODO: refactor this predicate chain into a single predicate.Funcs that can be properly tested as a whole
predicate.Or(
// Added again here, as otherwise NotIgnored would filter this add/update event out
resourcemanagerpredicate.GotMarkedAsIgnored(),
resourcemanagerpredicate.NotIgnored(),
predicateutils.IsDeleting(),
),
)).
WithOptions(controller.Options{
MaxConcurrentReconciles: ptr.Deref(r.Config.ConcurrentSyncs, 0),
}).
Build(reconcilerutils.OperationAnnotationWrapper(
mgr,
func() client.Object { return &resourcesv1alpha1.ManagedResource{} },
r,
))
if err != nil {
return err
}
return c.Watch(
source.Kind(mgr.GetCache(), &corev1.Secret{}),
mapper.EnqueueRequestsFrom(ctx, mgr.GetCache(), r.MapSecretToManagedResources(
r.ClassFilter,
predicate.Or(
resourcemanagerpredicate.NotIgnored(),
predicateutils.IsDeleting(),
),
), mapper.UpdateWithOldAndNew, c.GetLogger()),
)
}
// MapSecretToManagedResources maps secrets to relevant ManagedResources.
func (r *Reconciler) MapSecretToManagedResources(managedResourcePredicates ...predicate.Predicate) mapper.MapFunc {
return func(ctx context.Context, _ logr.Logger, reader client.Reader, obj client.Object) []reconcile.Request {
if obj == nil {
return nil
}
secret, ok := obj.(*corev1.Secret)
if !ok {
return nil
}
managedResourceList := &resourcesv1alpha1.ManagedResourceList{}
if err := reader.List(ctx, managedResourceList, client.InNamespace(secret.Namespace)); err != nil {
return nil
}
var requests []reconcile.Request
for _, mr := range managedResourceList.Items {
if !predicateutils.EvalGeneric(&mr, managedResourcePredicates...) {
continue
}
for _, secretRef := range mr.Spec.SecretRefs {
if secretRef.Name == secret.Name {
requests = append(requests, reconcile.Request{
NamespacedName: types.NamespacedName{
Namespace: mr.Namespace,
Name: mr.Name,
},
})
}
}
}
return requests
}
}