Skip to content

Commit

Permalink
add kubebuilder rbac for pod resource
Browse files Browse the repository at this point in the history
  • Loading branch information
Anis authored and Anis committed Feb 28, 2024
1 parent 5488c88 commit 5b1ceda
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,32 @@ kind: ClusterRole
metadata:
name: manager-role
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
- pods/finalizers
verbs:
- update
- apiGroups:
- ""
resources:
- pods/status
verbs:
- get
- patch
- update
- apiGroups:
- ""
resources:
Expand Down

0 comments on commit 5b1ceda

Please sign in to comment.