sigs.k8s.io/cluster-api@v1.6.3/controlplane/kubeadm/config/rbac/role.yaml (about) 1 --- 2 apiVersion: rbac.authorization.k8s.io/v1 3 kind: ClusterRole 4 metadata: 5 name: manager-role 6 rules: 7 - apiGroups: 8 - apiextensions.k8s.io 9 resources: 10 - customresourcedefinitions 11 verbs: 12 - get 13 - list 14 - watch 15 - apiGroups: 16 - authentication.k8s.io 17 resources: 18 - tokenreviews 19 verbs: 20 - create 21 - apiGroups: 22 - authorization.k8s.io 23 resources: 24 - subjectaccessreviews 25 verbs: 26 - create 27 - apiGroups: 28 - bootstrap.cluster.x-k8s.io 29 - controlplane.cluster.x-k8s.io 30 - infrastructure.cluster.x-k8s.io 31 resources: 32 - '*' 33 verbs: 34 - create 35 - delete 36 - get 37 - list 38 - patch 39 - update 40 - watch 41 - apiGroups: 42 - cluster.x-k8s.io 43 resources: 44 - clusters 45 - clusters/status 46 verbs: 47 - get 48 - list 49 - watch 50 - apiGroups: 51 - cluster.x-k8s.io 52 resources: 53 - machines 54 - machines/status 55 verbs: 56 - create 57 - delete 58 - get 59 - list 60 - patch 61 - update 62 - watch 63 - apiGroups: 64 - "" 65 resources: 66 - events 67 verbs: 68 - create 69 - get 70 - list 71 - patch 72 - watch 73 - apiGroups: 74 - "" 75 resources: 76 - secrets 77 verbs: 78 - create 79 - get 80 - list 81 - patch 82 - update 83 - watch