Skip to content

Commit

Permalink
Add RBAC for events (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored Mar 31, 2018
1 parent 4d17b0c commit 0de1d74
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/ingress/rbac.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
Expand Down

0 comments on commit 0de1d74

Please # to comment.