@@ -17,19 +17,21 @@ rules:
17
17
" clusterrbacsyncconfigs"
18
18
]
19
19
verbs : ["get", "list", "watch"]
20
+ # "bind" and "escalate" are not supported until Kubernetes 1.12. When deploying to
21
+ # versions >= 1.12, you can comment out the '*' configs, which provide cluster-admin and
22
+ # just use the configuration here.
23
+ #
24
+ # This is ignored prior to 1.12.
25
+ #
26
+ # See https://kubernetes.io/docs/reference/access-authn-authz/rbac/#privilege-escalation-prevention-and-bootstrapping for details.
27
+ # - apiGroups: ["rbac.authorization.k8s.io"]
28
+ # resources: ["clusterroles", "roles"]
29
+ # verbs: ["bind", "escalate"]
20
30
- apiGroups : ["rbac.authorization.k8s.io"]
21
31
resources : ["clusterrolebindings", "rolebindings"]
22
32
verbs : [
23
- " get" , "list", "watch", "create", "update", "patch", "delete",
24
-
25
- # "escalate" is not supported until Kuberenetes 1.12. When deploying to
26
- # 1.12, you can comment out the '*' configs, which privde cluster-admin and
27
- # just use the confuration called out here.
28
- #
29
- # This is ignored prior to 1.12.
30
- #
31
- # See https://kubernetes.io/docs/reference/access-authn-authz/rbac/#privilege-escalation-prevention-and-bootstrapping for details.
32
- " escalate" ]
33
+ " get" , "list", "watch", "create", "update", "patch", "delete"
34
+ ]
33
35
- apiGroups : [""]
34
36
resources : ["events"]
35
37
verbs : ["get", "list", "watch", "create", "update", "patch"]
0 commit comments