r.Recorder.Eventf(&instance, corev1.EventTypeNormal, "Created", "Created head pod %s", pod.Name)
When we invoke the Eventf
to record a new event, the recorder will pass the event to the *Broadcaster.ActionOrDrop()
.
The *Broadcaster.ActionOrDrop()
looks like this: