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
43 lines (37 loc) · 1.37 KB
/
add.go
File metadata and controls
43 lines (37 loc) · 1.37 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
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package agentreconciliationdelay
import (
corev1 "k8s.io/api/core/v1"
"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/source"
"github.com/gardener/gardener/pkg/controllerutils"
predicateutils "github.com/gardener/gardener/pkg/controllerutils/predicate"
)
// ControllerName is the name of the controller.
const ControllerName = "node-agent-reconciliation-delay"
// 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()
}
return builder.
ControllerManagedBy(mgr).
Named(ControllerName).
WithOptions(controller.Options{
MaxConcurrentReconciles: 1,
ReconciliationTimeout: controllerutils.DefaultReconciliationTimeout,
}).
WatchesRawSource(
source.Kind[client.Object](targetCluster.GetCache(),
&corev1.Node{},
controllerutils.EnqueueAnonymously,
predicateutils.ForEventTypes(predicateutils.Create, predicateutils.Delete)),
).
Complete(r)
}