Versions in this module Expand all Collapse all v0 v0.5.0 Feb 13, 2020 Changes in this version + type APIRecorder struct + func NewAPIRecorder(r record.EventRecorder) *APIRecorder + func (r *APIRecorder) Event(obj runtime.Object, e Event) + func (r *APIRecorder) WithAnnotations(keysAndValues ...string) Recorder + type Event struct + Annotations map[string]string + Message string + Reason Reason + Type Type + func Normal(r Reason, message string, keysAndValues ...string) Event + func Warning(r Reason, err error, keysAndValues ...string) Event + type NopRecorder struct + func NewNopRecorder() *NopRecorder + func (r *NopRecorder) Event(_ runtime.Object, _ Event) + func (r *NopRecorder) WithAnnotations(_ ...string) Recorder + type Reason string + type Recorder interface + Event func(obj runtime.Object, e Event) + WithAnnotations func(keysAndValues ...string) Recorder + type Type string + var TypeNormal Type = "Normal" + var TypeWarning Type = "Warning"