File tree Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : rbac.authorization.k8s.io/v1
2
+ kind : ClusterRole
3
+ metadata :
4
+ name : kuberay-edit-role
5
+ labels :
6
+ rbac.authorization.k8s.io/aggregate-to-edit : " true"
7
+ rbac.authorization.k8s.io/aggregate-to-admin : " true"
8
+ rules :
9
+ - apiGroups :
10
+ - ray.io
11
+ resources :
12
+ - rayjobs
13
+ - rayclusters
14
+ - rayservices
15
+ verbs :
16
+ - create
17
+ - delete
18
+ - deletecollection
19
+ - get
20
+ - list
21
+ - patch
22
+ - update
23
+ - watch
24
+ - apiGroups :
25
+ - ray.io
26
+ resources :
27
+ - rayservices/finalizers
28
+ - rayclusters/finalizers
29
+ - rayjobs/finalizers
30
+ - rayservices/status
31
+ - rayclusters/status
32
+ - rayjobs/status
33
+ verbs :
34
+ - get
Original file line number Diff line number Diff line change 1
1
resources :
2
+ - editor_role.yaml
2
3
- role.yaml
3
4
- role_binding.yaml
4
5
- leader_election_role.yaml
5
6
- leader_election_role_binding.yaml
6
7
- service_account.yaml
8
+ - viewer_role.yaml
7
9
8
10
commonLabels :
9
11
app.kubernetes.io/name : kuberay
Original file line number Diff line number Diff line change
1
+ apiVersion : rbac.authorization.k8s.io/v1
2
+ kind : ClusterRole
3
+ metadata :
4
+ name : kuberay-view-role
5
+ labels :
6
+ rbac.authorization.k8s.io/aggregate-to-view : " true"
7
+ rules :
8
+ - apiGroups :
9
+ - ray.io
10
+ resources :
11
+ - rayjobs
12
+ - rayclusters
13
+ - rayservices
14
+ verbs :
15
+ - get
16
+ - list
17
+ - watch
18
+ - apiGroups :
19
+ - ray.io
20
+ resources :
21
+ - rayservices/finalizers
22
+ - rayclusters/finalizers
23
+ - rayjobs/finalizers
24
+ - rayservices/status
25
+ - rayclusters/status
26
+ - rayjobs/status
27
+ verbs :
28
+ - get
You can’t perform that action at this time.
0 commit comments