Skip to content

Commit

Permalink
Merge pull request #49 from DataONEorg/feature-48-readonly-rbac
Browse files Browse the repository at this point in the history
Allow read-only access ('kubectl get') on rbac roles and rolebindings
  • Loading branch information
mbjones authored Aug 21, 2024
2 parents b9e34a7 + 996df67 commit 421f9d8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions authorization/application-context.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ rules:
- jobs
- cronjobs
verbs: ["*"]
## Allow read-only access ('kubectl get') on rbac roles and rolebindings:
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["roles", "rolebindings"]
verbs: ["get"]

---
kind: RoleBinding
Expand Down

0 comments on commit 421f9d8

Please sign in to comment.