forked from gardener/gardener
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadd.go
More file actions
39 lines (32 loc) · 1.03 KB
/
add.go
File metadata and controls
39 lines (32 loc) · 1.03 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
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package garbagecollector
import (
"time"
"k8s.io/utils/ptr"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/cluster"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/manager"
"github.com/gardener/gardener/pkg/controllerutils"
)
// ControllerName is the name of the controller.
const ControllerName = "garbage-collector"
// 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.MinimumObjectLifetime == nil {
r.MinimumObjectLifetime = ptr.To(10 * time.Minute)
}
return builder.
ControllerManagedBy(mgr).
Named(ControllerName).
WithOptions(controller.Options{
MaxConcurrentReconciles: 1,
}).
WatchesRawSource(controllerutils.EnqueueOnce).
Complete(r)
}