Versions in this module Expand all Collapse all v0 v0.1.19 Nov 25, 2024 Changes in this version + var EventAs = errors.As + var EventIs = errors.Is + type Event error + func NewEvent(eventtype, reason, messageFmt string, args ...interface{}) Event + type ReconcilerEvent struct + Args []interface{} + EventType string + Format string + Reason string + func (e *ReconcilerEvent) As(target interface{}) bool + func (e *ReconcilerEvent) Error() string + func (e *ReconcilerEvent) Is(target error) bool + func (e *ReconcilerEvent) Record(obj runtime.Object, recorder record.EventRecorder) + type RecordFactory func(eventtype, reason, messageFmt string, args ...interface{}) Event