Skip to content

Commit

Permalink
Merge pull request #2793 from vpnachev/rbac/adminstrator
Browse files Browse the repository at this point in the history
Allow administrator to list namespaces and manage RBACs and admission webhooks
  • Loading branch information
vpnachev committed Aug 31, 2020
2 parents 97e2874 + 8abb655 commit 51ee00b
Showing 1 changed file with 23 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,29 @@ rules:
resources:
- namespaces
verbs:
- get
- '*'
- apiGroups:
- rbac.authorization.k8s.io
resources:
- clusterroles
- clusterrolebindings
- roles
- rolebindings
verbs:
- '*'
- apiGroups:
- admissionregistration.k8s.io
resources:
- mutatingwebhookconfigurations
- validatingwebhookconfigurations
verbs:
- '*'
- apiGroups:
- apiregistration.k8s.io
resources:
- apiservices
verbs:
- '*'

# Aggregated cluster role specifying garden administrators.
# IMPORTANT: You need to define a corresponding ClusterRoleBinding binding specific users
Expand Down

0 comments on commit 51ee00b

Please sign in to comment.