forked from knative/eventing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
channel.go
144 lines (123 loc) · 4.76 KB
/
channel.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
/*
Copyright 2019 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
http://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 channel
import (
"context"
"github.com/knative/eventing/pkg/apis/eventing/v1alpha1"
"github.com/knative/eventing/pkg/logging"
"go.uber.org/zap"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/record"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
"sigs.k8s.io/controller-runtime/pkg/event"
"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/reconcile"
"sigs.k8s.io/controller-runtime/pkg/source"
)
const (
// controllerAgentName is the string used by this controller to identify
// itself when creating events.
controllerAgentName = "channel-default-controller"
channelReconciled = "ChannelReconciled"
channelUpdateStatusFailed = "ChannelUpdateStatusFailed"
)
type reconciler struct {
client client.Client
restConfig *rest.Config
dynamicClient dynamic.Interface
recorder record.EventRecorder
logger *zap.Logger
}
// Verify the struct implements reconcile.Reconciler
var _ reconcile.Reconciler = &reconciler{}
// ProvideController returns a Channel controller.
// This Channel controller is a default controller for channels of all provisioner kinds
func ProvideController(mgr manager.Manager, logger *zap.Logger) (controller.Controller, error) {
// Setup a new controller to Reconcile channel
c, err := controller.New(controllerAgentName, mgr, controller.Options{
Reconciler: &reconciler{
recorder: mgr.GetRecorder(controllerAgentName),
logger: logger,
},
})
if err != nil {
return nil, err
}
// Watch channel events
// This controller is no-op when Channels are deleted
if err = c.Watch(
&source.Kind{Type: &v1alpha1.Channel{}},
&handler.EnqueueRequestForObject{},
predicate.Funcs{
DeleteFunc: func(event.DeleteEvent) bool {
return false
},
}); err != nil {
return nil, err
}
return c, nil
}
// Reconcile will check if the channel is being watched by provisioner's channel controller
// This will improve UX. See https://github.com/knative/eventing/issues/779
func (r *reconciler) Reconcile(request reconcile.Request) (reconcile.Result, error) {
ctx := logging.WithLogger(context.TODO(), r.logger.With(zap.Any("request", request)))
logging.FromContext(ctx).Debug("Reconciling Channel")
ch := &v1alpha1.Channel{}
// Controller-runtime client Get() always deep copies the object. Hence no need to again deep copy it
err := r.client.Get(ctx, request.NamespacedName, ch)
if errors.IsNotFound(err) {
logging.FromContext(ctx).Info("Channel not found")
return reconcile.Result{}, nil
}
if err != nil {
logging.FromContext(ctx).Error("Error getting Channel", zap.Error(err))
return reconcile.Result{}, err
}
err = r.reconcile(ctx, ch)
if err != nil {
logging.FromContext(ctx).Warn("Error reconciling Channel", zap.Error(err))
r.recorder.Eventf(ch, corev1.EventTypeWarning, channelUpdateStatusFailed, "Failed to update channel status: %s", request)
return reconcile.Result{Requeue: true}, err
}
logging.FromContext(ctx).Debug("Successfully reconciled Channel")
r.recorder.Eventf(ch, corev1.EventTypeNormal, channelReconciled, "Channel reconciled: %s", request)
return reconcile.Result{Requeue: false}, nil
}
func (r *reconciler) reconcile(ctx context.Context, ch *v1alpha1.Channel) error {
// Do not Initialize() Status in channel-default-controller. It will set ChannelConditionProvisionerInstalled=True
// Directly call GetCondition(). If the Status was never initialized then GetCondition() will return nil and
// IsUnknown() will return true
c := ch.Status.GetCondition(v1alpha1.ChannelConditionProvisionerInstalled)
if c.IsUnknown() {
ch.Status.MarkProvisionerNotInstalled(
"Provisioner not found.",
"Specified provisioner [Name:%s Kind:%s] is not installed or not controlling the channel.",
ch.Spec.Provisioner.Name,
ch.Spec.Provisioner.Kind,
)
err := r.client.Status().Update(ctx, ch)
return err
}
return nil
}
// InjectClient implements controller runtime's inject.Client.
func (r *reconciler) InjectClient(c client.Client) error {
r.client = c
return nil
}