diff --git a/pkg/ingress/rbac.go b/pkg/ingress/rbac.go index dfce60874..49d63955d 100644 --- a/pkg/ingress/rbac.go +++ b/pkg/ingress/rbac.go @@ -132,6 +132,11 @@ func (c *controller) reconcileRoles() (kutil.VerbType, error) { Resources: []string{"ingresses"}, Verbs: []string{"get", "list", "watch"}, }, + { + APIGroups: []string{core.GroupName}, + Resources: []string{"events"}, + Verbs: []string{"create"}, + }, } return in })