forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd.go
More file actions
73 lines (64 loc) · 2.35 KB
/
add.go
File metadata and controls
73 lines (64 loc) · 2.35 KB
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
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package criticalcomponents
import (
corev1 "k8s.io/api/core/v1"
"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/handler"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"sigs.k8s.io/controller-runtime/pkg/source"
v1beta1constants "github.com/gardener/gardener/pkg/apis/core/v1beta1/constants"
"github.com/gardener/gardener/pkg/controllerutils"
predicateutils "github.com/gardener/gardener/pkg/controllerutils/predicate"
)
// ControllerName is the name of the controller.
const ControllerName = "node-critical-components"
// AddToManager adds Reconciler to the given manager.
func (r *Reconciler) AddToManager(mgr manager.Manager, targetCluster cluster.Cluster) error {
if r.TargetClient == nil {
r.TargetClient = targetCluster.GetClient()
}
if r.Recorder == nil {
r.Recorder = targetCluster.GetEventRecorderFor(ControllerName + "-controller")
}
return builder.
ControllerManagedBy(mgr).
Named(ControllerName).
WithOptions(controller.Options{
MaxConcurrentReconciles: ptr.Deref(r.Config.ConcurrentSyncs, 0),
ReconciliationTimeout: controllerutils.DefaultReconciliationTimeout,
}).
WatchesRawSource(
source.Kind[client.Object](targetCluster.GetCache(),
&corev1.Node{},
&handler.EnqueueRequestForObject{},
r.NodePredicate()),
).
Complete(r)
}
// NodePredicate returns a predicate that filters for Node objects that are created with the taint.
func (r *Reconciler) NodePredicate() predicate.Predicate {
return predicate.And(
predicateutils.ForEventTypes(predicateutils.Create, predicateutils.Update),
predicate.NewPredicateFuncs(NodeHasCriticalComponentsNotReadyTaint),
)
}
// NodeHasCriticalComponentsNotReadyTaint returns true if the given Node has the taint that this controller manages.
func NodeHasCriticalComponentsNotReadyTaint(obj client.Object) bool {
node, ok := obj.(*corev1.Node)
if !ok {
return false
}
for _, taint := range node.Spec.Taints {
if taint.Key == v1beta1constants.TaintNodeCriticalComponentsNotReady {
return true
}
}
return false
}