@@ -50,19 +50,17 @@ metadata:
5050 app.kubernetes.io/instance : default
5151 app.kubernetes.io/part-of : tekton-pipelines
5252rules :
53+ # Read-write access to create Pods, K8s Events and PVCs (for Workspaces)
5354 - apiGroups : [""]
54- resources : ["pods", "pods/log", "events", "configmaps", " persistentvolumeclaims", "limitranges "]
55+ resources : ["pods", "pods/log", "events", "persistentvolumeclaims"]
5556 verbs : ["get", "list", "create", "update", "delete", "patch", "watch"]
57+ # Read-only access to these.
5658 - apiGroups : [""]
57- resources : ["secrets", "serviceaccounts"]
59+ resources : ["configmaps", "limitranges", " secrets", "serviceaccounts"]
5860 verbs : ["get", "list", "watch"]
59- # Unclear if this access is actually required. Simply a hold-over from the previous
60- # incarnation of the controller's ClusterRole.
61+ # Read-write access to StatefulSets for Affinity Assistant.
6162 - apiGroups : ["apps"]
62- resources : ["deployments", "statefulsets"]
63- verbs : ["get", "list", "create", "update", "delete", "patch", "watch"]
64- - apiGroups : ["apps"]
65- resources : ["deployments/finalizers"]
63+ resources : ["statefulsets"]
6664 verbs : ["get", "list", "create", "update", "delete", "patch", "watch"]
6765---
6866kind : ClusterRole
0 commit comments