File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ resources:
99- role_binding.yaml
1010- leader_election_role.yaml
1111- leader_election_role_binding.yaml
12+ - user_role.yaml
1213# Comment the following 4 lines if you want to disable
1314# the auth proxy (https://github.com/brancz/kube-rbac-proxy)
1415# which protects your /metrics endpoint.
Original file line number Diff line number Diff line change 1+ # permissions for end users of appwrappers.
2+ apiVersion : rbac.authorization.k8s.io/v1
3+ kind : ClusterRole
4+ metadata :
5+ name : user-role
6+ rules :
7+ - apiGroups :
8+ - workload.codeflare.dev
9+ resources :
10+ - appwrappers
11+ verbs :
12+ - create
13+ - delete
14+ - get
15+ - list
16+ - watch
17+ - apiGroups :
18+ - workload.codeflare.dev
19+ resources :
20+ - appwrappers/status
21+ verbs :
22+ - get
23+ - apiGroups :
24+ - workload.codeflare.dev
25+ resources :
26+ - appwrappers/finalizer
27+ verbs :
28+ - update
You can’t perform that action at this time.
0 commit comments