-
Notifications
You must be signed in to change notification settings - Fork 866
/
record.go
403 lines (360 loc) · 14.6 KB
/
record.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
package record
import (
"context"
"crypto/sha1"
"encoding/base64"
"encoding/json"
"fmt"
"regexp"
"strings"
"time"
timeutil "github.com/argoproj/argo-rollouts/utils/time"
"github.com/argoproj/notifications-engine/pkg/api"
"github.com/argoproj/notifications-engine/pkg/services"
"github.com/argoproj/notifications-engine/pkg/subscriptions"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
k8sinformers "k8s.io/client-go/informers"
"k8s.io/client-go/kubernetes"
k8sfake "k8s.io/client-go/kubernetes/fake"
typedcorev1 "k8s.io/client-go/kubernetes/typed/core/v1"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/record"
"k8s.io/kubectl/pkg/scheme"
"github.com/argoproj/argo-rollouts/pkg/apis/rollouts/v1alpha1"
rolloutscheme "github.com/argoproj/argo-rollouts/pkg/client/clientset/versioned/scheme"
logutil "github.com/argoproj/argo-rollouts/utils/log"
)
func init() {
// Add argo-rollouts custom resources to the default Kubernetes Scheme so Events can be
// logged for argo-rollouts types.
utilruntime.Must(rolloutscheme.AddToScheme(scheme.Scheme))
}
const (
controllerAgentName = "rollouts-controller"
NotificationConfigMap = "argo-rollouts-notification-configmap"
NotificationSecret = "argo-rollouts-notification-secret"
)
type EventOptions struct {
// EventType is the kubernetes event type (Normal or Warning). Defaults to Normal
EventType string
// EventReason is a Kubernetes EventReason of why this event is generated.
// Reason should be short and unique; it should be in UpperCamelCase format (starting with a
// capital letter). "reason" will be used to automate handling of events, so imagine people
// writing switch statements to handle them.
EventReason string
}
type EventRecorder interface {
Eventf(object runtime.Object, opts EventOptions, messageFmt string, args ...interface{})
Warnf(object runtime.Object, opts EventOptions, messageFmt string, args ...interface{})
K8sRecorder() record.EventRecorder
}
// EventRecorderAdapter implements the EventRecorder interface
type EventRecorderAdapter struct {
// Recorder is a K8s EventRecorder
Recorder record.EventRecorder
// RolloutEventCounter is a counter to increment on events
RolloutEventCounter *prometheus.CounterVec
// NotificationFailCounter is a counter to increment on failing to send notifications
NotificationFailedCounter *prometheus.CounterVec
// NotificationSuccessCounter is a counter to increment on successful send notifications
NotificationSuccessCounter *prometheus.CounterVec
NotificationSendPerformance *prometheus.HistogramVec
eventf func(object runtime.Object, warn bool, opts EventOptions, messageFmt string, args ...interface{})
// apiFactory is a notifications engine API factory
apiFactory api.Factory
}
func NewEventRecorder(kubeclientset kubernetes.Interface, rolloutEventCounter *prometheus.CounterVec, notificationFailedCounter *prometheus.CounterVec, notificationSuccessCounter *prometheus.CounterVec, notificationSendPerformance *prometheus.HistogramVec, apiFactory api.Factory) EventRecorder {
// Create event broadcaster
// Add argo-rollouts custom resources to the default Kubernetes Scheme so Events can be
// logged for argo-rollouts types.
eventBroadcaster := record.NewBroadcaster()
eventBroadcaster.StartLogging(log.Infof)
eventBroadcaster.StartRecordingToSink(&typedcorev1.EventSinkImpl{Interface: kubeclientset.CoreV1().Events("")})
k8srecorder := eventBroadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: controllerAgentName})
recorder := &EventRecorderAdapter{
Recorder: k8srecorder,
RolloutEventCounter: rolloutEventCounter,
NotificationFailedCounter: notificationFailedCounter,
NotificationSuccessCounter: notificationSuccessCounter,
NotificationSendPerformance: notificationSendPerformance,
apiFactory: apiFactory,
}
recorder.eventf = recorder.defaultEventf
return recorder
}
// FakeEventRecorder wraps EventRecorderAdapter but with a convenience function to get all the event
// reasons which were emitted
type FakeEventRecorder struct {
EventRecorderAdapter
Events []string
}
func NewFakeApiFactory() api.Factory {
var (
settings = api.Settings{ConfigMapName: "my-config-map", SecretName: "my-secret", InitGetVars: func(cfg *api.Config, configMap *corev1.ConfigMap, secret *corev1.Secret) (api.GetVars, error) {
return func(obj map[string]interface{}, dest services.Destination) map[string]interface{} {
return map[string]interface{}{"obj": obj}
}, nil
}}
)
cm := &corev1.ConfigMap{
ObjectMeta: metav1.ObjectMeta{Name: "my-config-map", Namespace: "default"},
Data: map[string]string{
"service.slack": `{"token": "abc"}`,
},
}
secret := &corev1.Secret{
ObjectMeta: metav1.ObjectMeta{Name: "my-secret", Namespace: "default"},
}
clientset := k8sfake.NewSimpleClientset(cm, secret)
informerFactory := k8sinformers.NewSharedInformerFactory(clientset, time.Minute)
secrets := informerFactory.Core().V1().Secrets().Informer()
configMaps := informerFactory.Core().V1().ConfigMaps().Informer()
apiFactory := api.NewFactory(settings, "default", secrets, configMaps)
go informerFactory.Start(context.Background().Done())
if !cache.WaitForCacheSync(context.Background().Done(), configMaps.HasSynced, secrets.HasSynced) {
log.Info("failed to sync informers")
}
return apiFactory
}
func NewFakeEventRecorder() *FakeEventRecorder {
recorder := NewEventRecorder(
k8sfake.NewSimpleClientset(),
prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "rollout_events_total",
},
[]string{"name", "namespace", "type", "reason"},
),
prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "notification_send_error",
},
[]string{"name", "namespace", "type", "reason"},
),
prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "notification_send_success",
},
[]string{"name", "namespace", "type", "reason"},
),
prometheus.NewHistogramVec(
prometheus.HistogramOpts{
Name: "notification_send_performance",
Help: "Notification send performance.",
Buckets: []float64{0.01, 0.15, .25, .5, 1},
},
[]string{"namespace", "name"},
),
NewFakeApiFactory(),
).(*EventRecorderAdapter)
recorder.Recorder = record.NewFakeRecorder(1000)
fakeRecorder := &FakeEventRecorder{}
recorder.eventf = func(object runtime.Object, warn bool, opts EventOptions, messageFmt string, args ...interface{}) {
recorder.defaultEventf(object, warn, opts, messageFmt, args...)
fakeRecorder.Events = append(fakeRecorder.Events, opts.EventReason)
}
fakeRecorder.EventRecorderAdapter = *recorder
return fakeRecorder
}
func (e *EventRecorderAdapter) Eventf(object runtime.Object, opts EventOptions, messageFmt string, args ...interface{}) {
if opts.EventType == "" {
opts.EventType = corev1.EventTypeNormal
}
e.eventf(object, opts.EventType == corev1.EventTypeWarning, opts, messageFmt, args...)
}
func (e *EventRecorderAdapter) Warnf(object runtime.Object, opts EventOptions, messageFmt string, args ...interface{}) {
opts.EventType = corev1.EventTypeWarning
e.eventf(object, true, opts, messageFmt, args...)
}
// defaultEventf is the default implementation of eventf, which is able to be overwritten for
// test purposes
func (e *EventRecorderAdapter) defaultEventf(object runtime.Object, warn bool, opts EventOptions, messageFmt string, args ...interface{}) {
logCtx := logutil.WithObject(object)
if opts.EventReason != "" {
logCtx = logCtx.WithField("event_reason", opts.EventReason)
e.Recorder.Eventf(object, opts.EventType, opts.EventReason, messageFmt, args...)
// Increment rollout_events_total counter
kind, namespace, name := logutil.KindNamespaceName(logCtx)
if kind == "Rollout" {
e.RolloutEventCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
}
apis, err := e.apiFactory.GetAPIsFromNamespace(namespace)
if err != nil {
logCtx.Errorf("notifications failed to get apis for eventReason %s with error: %s", opts.EventReason, err)
e.NotificationFailedCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
}
for _, api := range apis {
err := e.sendNotifications(api, object, opts)
if err != nil {
logCtx.Errorf("Notifications failed to send for eventReason %s with error: %s", opts.EventReason, err)
}
}
}
logFn := logCtx.Infof
if warn {
logFn = logCtx.Warnf
}
logFn(messageFmt, args...)
}
func (e *EventRecorderAdapter) K8sRecorder() record.EventRecorder {
return e.Recorder
}
func NewAPIFactorySettings() api.Settings {
return api.Settings{
SecretName: NotificationSecret,
ConfigMapName: NotificationConfigMap,
InitGetVars: func(cfg *api.Config, configMap *corev1.ConfigMap, secret *corev1.Secret) (api.GetVars, error) {
return func(obj map[string]interface{}, dest services.Destination) map[string]interface{} {
return map[string]interface{}{"rollout": obj, "time": timeExprs}
}, nil
},
}
}
// Send notifications for triggered event if user is subscribed
func (e *EventRecorderAdapter) sendNotifications(notificationsAPI api.API, object runtime.Object, opts EventOptions) []error {
logCtx := logutil.WithObject(object)
_, namespace, name := logutil.KindNamespaceName(logCtx)
startTime := timeutil.Now()
defer func() {
duration := time.Since(startTime)
e.NotificationSendPerformance.WithLabelValues(namespace, name).Observe(duration.Seconds())
logCtx.WithField("time_ms", duration.Seconds()*1e3).Debug("Notification sent")
}()
if notificationsAPI == nil {
return []error{fmt.Errorf("NotificationsAPI is nil")}
}
cfg := notificationsAPI.GetConfig()
destByTrigger := cfg.GetGlobalDestinations(object.(metav1.Object).GetLabels())
destByTrigger.Merge(subscriptions.NewAnnotations(object.(metav1.Object).GetAnnotations()).GetDestinations(cfg.DefaultTriggers, cfg.ServiceDefaultTriggers))
trigger := translateReasonToTrigger(opts.EventReason)
destinations := destByTrigger[trigger]
if len(destinations) == 0 {
logCtx.Debugf("No configured destinations for trigger: %s", trigger)
return nil
}
objMap, err := toObjectMap(object)
if err != nil {
return []error{err}
}
emptyCondition := hash("")
// We should not return in these loops because we want other configured notifications to still send if they can.
errors := []error{}
for _, destination := range destinations {
res, err := notificationsAPI.RunTrigger(trigger, objMap)
if err != nil {
log.Errorf("Failed to run trigger, trigger: %s, destination: %s, namespace config: %s : %v",
trigger, destination, notificationsAPI.GetConfig().Namespace, err)
errors = append(errors, err)
continue
}
log.Infof("Trigger %s result: %v", trigger, res)
for _, c := range res {
log.Infof("Result when condition hash: %s, templates: %s", c.Key, c.Templates)
s := strings.Split(c.Key, ".")[1]
if s != emptyCondition && c.Triggered == true {
err = notificationsAPI.Send(objMap, c.Templates, destination)
if err != nil {
log.Errorf("Failed to execute the sending of notification on not empty condition, trigger: %s, destination: %s, namespace config: %s : %v",
trigger, destination, notificationsAPI.GetConfig().Namespace, err)
e.NotificationFailedCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
errors = append(errors, err)
continue
}
e.NotificationSuccessCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
} else if s == emptyCondition {
err = notificationsAPI.Send(objMap, c.Templates, destination)
if err != nil {
log.Errorf("Failed to execute the sending of notification on empty condition, trigger: %s, destination: %s, namespace config: %s : %v",
trigger, destination, notificationsAPI.GetConfig().Namespace, err)
e.NotificationFailedCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
errors = append(errors, err)
continue
}
e.NotificationSuccessCounter.WithLabelValues(namespace, name, opts.EventType, opts.EventReason).Inc()
}
}
}
if len(errors) == 0 {
return nil
}
return errors
}
// This function is copied over from notification engine to make sure we honour emptyCondition
// emptyConditions today are not handled well in notification engine.
// TODO: update notification engine to handle emptyConditions and remove this function and its usage
func hash(input string) string {
h := sha1.New()
_, _ = h.Write([]byte(input))
return base64.RawURLEncoding.EncodeToString(h.Sum(nil))
}
// toObjectMap converts an object to a map for the purposes of sending to the notification engine
func toObjectMap(object interface{}) (map[string]interface{}, error) {
objBytes, err := json.Marshal(object)
if err != nil {
return nil, err
}
var objMap map[string]interface{}
err = json.Unmarshal(objBytes, &objMap)
if err != nil {
return nil, err
}
// The JSON marshalling above drops the `spec.template` and `spec.selectors` fields if the rollout
// is using workload referencing. The following restores those fields in the returned object map
// so that notification templates can refer to them (as if workload ref was not used).
if ro, ok := object.(*v1alpha1.Rollout); ok && ro.Spec.WorkloadRef != nil {
templateBytes, err := json.Marshal(ro.Spec.Template)
if err != nil {
return nil, err
}
var templateMap map[string]interface{}
err = json.Unmarshal(templateBytes, &templateMap)
if err != nil {
return nil, err
}
err = unstructured.SetNestedMap(objMap, templateMap, "spec", "template")
if err != nil {
return nil, err
}
selectorBytes, err := json.Marshal(ro.Spec.Selector)
if err != nil {
return nil, err
}
var selectorMap map[string]interface{}
err = json.Unmarshal(selectorBytes, &selectorMap)
if err != nil {
return nil, err
}
err = unstructured.SetNestedMap(objMap, selectorMap, "spec", "selector")
if err != nil {
return nil, err
}
}
return objMap, nil
}
func translateReasonToTrigger(reason string) string {
var matchFirstCap = regexp.MustCompile("(.)([A-Z][a-z]+)")
var matchAllCap = regexp.MustCompile("([a-z0-9])([A-Z])")
trigger := matchFirstCap.ReplaceAllString(reason, "${1}-${2}")
trigger = matchAllCap.ReplaceAllString(trigger, "${1}-${2}")
return "on-" + strings.ToLower(trigger)
}
var timeExprs = map[string]interface{}{
"Parse": parse,
"Now": now,
}
func parse(timestamp string) time.Time {
res, err := time.Parse(time.RFC3339, timestamp)
if err != nil {
panic(err)
}
return res
}
func now() time.Time {
return time.Now()
}