2019-02-07 09:59:26 +00:00
|
|
|
---
|
2018-07-18 14:48:43 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ServiceAccount
|
|
|
|
metadata:
|
2019-01-23 15:05:15 +00:00
|
|
|
name: rbd-csi-nodeplugin
|
2021-07-30 17:15:34 +00:00
|
|
|
# replace with non-default namespace name
|
|
|
|
namespace: default
|
2020-01-24 16:26:56 +00:00
|
|
|
---
|
|
|
|
kind: ClusterRole
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
name: rbd-csi-nodeplugin
|
|
|
|
rules:
|
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["nodes"]
|
|
|
|
verbs: ["get"]
|
2020-12-16 08:52:36 +00:00
|
|
|
# allow to read Vault Token and connection options from the Tenants namespace
|
2020-12-10 10:27:11 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["secrets"]
|
|
|
|
verbs: ["get"]
|
2020-12-16 08:52:36 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["configmaps"]
|
|
|
|
verbs: ["get"]
|
2021-06-24 10:39:40 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["serviceaccounts"]
|
|
|
|
verbs: ["get"]
|
2021-05-31 11:12:21 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["persistentvolumes"]
|
|
|
|
verbs: ["get"]
|
|
|
|
- apiGroups: ["storage.k8s.io"]
|
|
|
|
resources: ["volumeattachments"]
|
|
|
|
verbs: ["list", "get"]
|
2022-06-08 14:11:36 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["serviceaccounts/token"]
|
|
|
|
verbs: ["create"]
|
2020-01-24 16:26:56 +00:00
|
|
|
---
|
|
|
|
kind: ClusterRoleBinding
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
name: rbd-csi-nodeplugin
|
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
|
|
|
name: rbd-csi-nodeplugin
|
2021-07-30 17:15:34 +00:00
|
|
|
# replace with non-default namespace name
|
2020-01-24 16:26:56 +00:00
|
|
|
namespace: default
|
|
|
|
roleRef:
|
|
|
|
kind: ClusterRole
|
|
|
|
name: rbd-csi-nodeplugin
|
|
|
|
apiGroup: rbac.authorization.k8s.io
|