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
41 lines (35 loc) · 1.28 KB
/
add.go
File metadata and controls
41 lines (35 loc) · 1.28 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
// SPDX-FileCopyrightText: SAP SE or an SAP affiliate company and Gardener contributors
//
// SPDX-License-Identifier: Apache-2.0
package controllerdeployment
import (
"k8s.io/utils/ptr"
"sigs.k8s.io/controller-runtime/pkg/builder"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/predicate"
gardencorev1 "github.com/gardener/gardener/pkg/apis/core/v1"
"github.com/gardener/gardener/pkg/controllerutils"
)
const (
// ControllerName is the name of this controller.
ControllerName = "controllerdeployment"
// FinalizerName is the finalizer used by this controller.
FinalizerName = "core.gardener.cloud/controllerdeployment"
)
// AddToManager adds Reconciler to the given manager.
func (r *Reconciler) AddToManager(mgr manager.Manager) error {
if r.Client == nil {
r.Client = mgr.GetClient()
}
return builder.
ControllerManagedBy(mgr).
Named(ControllerName).
For(&gardencorev1.ControllerDeployment{}, builder.WithPredicates(predicate.GenerationChangedPredicate{})).
WithOptions(controller.Options{
MaxConcurrentReconciles: ptr.Deref(r.Config.ConcurrentSyncs, 0),
RateLimiter: r.RateLimiter,
ReconciliationTimeout: controllerutils.DefaultReconciliationTimeout,
}).
Complete(r)
}