...
1apiVersion: rbac.authorization.k8s.io/v1
2kind: ClusterRole
3metadata:
4 name: displayctl
5rules:
6- resources:
7 - configmaps
8 apiGroups:
9 - ""
10 verbs:
11 - get
12 - list
13 - watch
14- resources:
15 - nodes
16 apiGroups:
17 - ""
18 verbs:
19 - get
20 - list
21 - watch
22- resources:
23 - nodes/status
24 apiGroups:
25 - ""
26 verbs:
27 - get
28 - patch
29 - update
30- resources:
31 - pods
32 apiGroups:
33 - ""
34 verbs:
35 - delete
36 - get
37 - list
38 - watch
39- resources:
40 - nodedisplayconfigs
41 apiGroups:
42 - display.edge.ncr.com
43 verbs:
44 - create
45 - get
46 - list
47 - patch
48 - update
49 - watch
50- resources:
51 - nodedisplayconfigs/status
52 apiGroups:
53 - display.edge.ncr.com
54 verbs:
55 - get
56 - patch
57 - update
View as plain text