(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{})
| 325 | } |
| 326 | |
| 327 | func (recorder *recorderImpl) AnnotatedEventf(object runtime.Object, annotations map[string]string, eventtype, reason, messageFmt string, args ...interface{}) { |
| 328 | recorder.generateEvent(object, annotations, metav1.Now(), eventtype, reason, fmt.Sprintf(messageFmt, args...)) |
| 329 | } |
| 330 | |
| 331 | func (recorder *recorderImpl) makeEvent(ref *v1.ObjectReference, annotations map[string]string, eventtype, reason, message string) *v1.Event { |
| 332 | t := metav1.Time{Time: recorder.clock.Now()} |
nothing calls this directly
no test coverage detected