diff --git a/pkg/apis/core/validation/events.go b/pkg/apis/core/validation/events.go index 8a860aba9c1..971918d5372 100644 --- a/pkg/apis/core/validation/events.go +++ b/pkg/apis/core/validation/events.go @@ -68,7 +68,7 @@ func ValidateEvent(event *core.Event) field.ErrorList { allErrs = append(allErrs, field.Required(field.NewPath("reportingInstance"), "")) } if len(event.ReportingInstance) > ReportingInstanceLengthLimit { - allErrs = append(allErrs, field.Invalid(field.NewPath("repotingIntance"), "", fmt.Sprintf("can have at most %v characters", ReportingInstanceLengthLimit))) + allErrs = append(allErrs, field.Invalid(field.NewPath("reportingInstance"), "", fmt.Sprintf("can have at most %v characters", ReportingInstanceLengthLimit))) } if len(event.Action) == 0 { allErrs = append(allErrs, field.Required(field.NewPath("action"), ""))