forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reconciler.go
146 lines (120 loc) · 4.81 KB
/
reconciler.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
/*
Copyright 2018 The Knative Authors
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
https://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 reconciler
import (
"time"
"go.uber.org/zap"
corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/scheme"
typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
"k8s.io/client-go/tools/record"
cachingclientset "github.com/knative/caching/pkg/client/clientset/versioned"
sharedclientset "github.com/knative/pkg/client/clientset/versioned"
"github.com/knative/pkg/configmap"
"github.com/knative/pkg/logging/logkey"
clientset "github.com/knative/serving/pkg/client/clientset/versioned"
servingScheme "github.com/knative/serving/pkg/client/clientset/versioned/scheme"
)
// Options defines the common reconciler options.
// We define this to reduce the boilerplate argument list when
// creating our controllers.
type Options struct {
KubeClientSet kubernetes.Interface
SharedClientSet sharedclientset.Interface
ServingClientSet clientset.Interface
DynamicClientSet dynamic.Interface
CachingClientSet cachingclientset.Interface
Recorder record.EventRecorder
StatsReporter StatsReporter
ConfigMapWatcher configmap.Watcher
Logger *zap.SugaredLogger
ResyncPeriod time.Duration
StopChannel <-chan struct{}
}
// GetTrackerLease returns a multiple of the resync period to use as the
// duration for tracker leases. This attempts to ensure that resyncs happen to
// refresh leases frequently enough that we don't miss updates to tracked
// objects.
func (o Options) GetTrackerLease() time.Duration {
return o.ResyncPeriod * 3
}
// Base implements the core controller logic, given a Reconciler.
type Base struct {
// KubeClientSet allows us to talk to the k8s for core APIs
KubeClientSet kubernetes.Interface
// SharedClientSet allows us to configure shared objects
SharedClientSet sharedclientset.Interface
// ServingClientSet allows us to configure Serving objects
ServingClientSet clientset.Interface
// DynamicClientSet allows us to configure pluggable Build objects
DynamicClientSet dynamic.Interface
// CachingClientSet allows us to instantiate Image objects
CachingClientSet cachingclientset.Interface
// ConfigMapWatcher allows us to watch for ConfigMap changes.
ConfigMapWatcher configmap.Watcher
// Recorder is an event recorder for recording Event resources to the
// Kubernetes API.
Recorder record.EventRecorder
// StatsReporter reports reconciler's metrics.
StatsReporter StatsReporter
// Sugared logger is easier to use but is not as performant as the
// raw logger. In performance critical paths, call logger.Desugar()
// and use the returned raw logger instead. In addition to the
// performance benefits, raw logger also preserves type-safety at
// the expense of slightly greater verbosity.
Logger *zap.SugaredLogger
}
// NewBase instantiates a new instance of Base implementing
// the common & boilerplate code between our reconcilers.
func NewBase(opt Options, controllerAgentName string) *Base {
// Enrich the logs with controller name
logger := opt.Logger.Named(controllerAgentName).With(zap.String(logkey.ControllerType, controllerAgentName))
recorder := opt.Recorder
if recorder == nil {
// Create event broadcaster
logger.Debug("Creating event broadcaster")
eventBroadcaster := record.NewBroadcaster()
eventBroadcaster.StartLogging(logger.Named("event-broadcaster").Infof)
eventBroadcaster.StartRecordingToSink(&typedcorev1.EventSinkImpl{Interface: opt.KubeClientSet.CoreV1().Events("")})
recorder = eventBroadcaster.NewRecorder(
scheme.Scheme, corev1.EventSource{Component: controllerAgentName})
}
statsReporter := opt.StatsReporter
if statsReporter == nil {
logger.Debug("Creating stats reporter")
var err error
statsReporter, err = NewStatsReporter(controllerAgentName)
if err != nil {
panic(err)
}
}
base := &Base{
KubeClientSet: opt.KubeClientSet,
SharedClientSet: opt.SharedClientSet,
ServingClientSet: opt.ServingClientSet,
DynamicClientSet: opt.DynamicClientSet,
CachingClientSet: opt.CachingClientSet,
ConfigMapWatcher: opt.ConfigMapWatcher,
Recorder: recorder,
StatsReporter: statsReporter,
Logger: logger,
}
return base
}
func init() {
// Add serving types to the default Kubernetes Scheme so Events can be
// logged for serving types.
servingScheme.AddToScheme(scheme.Scheme)
}