diff --git a/pkg/kube/watcher.go b/pkg/kube/watcher.go index c72c4838..40c63d08 100644 --- a/pkg/kube/watcher.go +++ b/pkg/kube/watcher.go @@ -63,7 +63,8 @@ func (e *EventWatcher) OnAdd(obj interface{}) { } func (e *EventWatcher) OnUpdate(oldObj, newObj interface{}) { - // Ignore updates + event := newObj.(*corev1.Event) + e.onEvent(event) } // Ignore events older than the maxEventAgeSeconds