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-provisioner
|
2018-07-18 14:48:43 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: ClusterRole
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
2019-01-23 15:05:15 +00:00
|
|
|
name: rbd-external-provisioner-runner
|
2019-04-16 07:49:59 +00:00
|
|
|
aggregationRule:
|
|
|
|
clusterRoleSelectors:
|
|
|
|
- matchLabels:
|
|
|
|
rbac.rbd.csi.ceph.com/aggregate-to-rbd-external-provisioner-runner: "true"
|
|
|
|
rules: []
|
|
|
|
---
|
|
|
|
kind: ClusterRole
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
name: rbd-external-provisioner-runner-rules
|
|
|
|
labels:
|
|
|
|
rbac.rbd.csi.ceph.com/aggregate-to-rbd-external-provisioner-runner: "true"
|
2018-07-18 14:48:43 +00:00
|
|
|
rules:
|
2019-04-01 08:28:29 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["nodes"]
|
|
|
|
verbs: ["get", "list", "watch"]
|
2018-07-18 14:48:43 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["secrets"]
|
|
|
|
verbs: ["get", "list"]
|
2019-03-04 03:02:01 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["events"]
|
|
|
|
verbs: ["list", "watch", "create", "update", "patch"]
|
2018-07-18 14:48:43 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["persistentvolumes"]
|
2019-11-27 12:15:27 +00:00
|
|
|
verbs: ["get", "list", "watch", "create", "update", "delete", "patch"]
|
2018-07-18 14:48:43 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["persistentvolumeclaims"]
|
|
|
|
verbs: ["get", "list", "watch", "update"]
|
|
|
|
- apiGroups: ["storage.k8s.io"]
|
|
|
|
resources: ["storageclasses"]
|
|
|
|
verbs: ["get", "list", "watch"]
|
2019-01-25 19:10:20 +00:00
|
|
|
- apiGroups: ["snapshot.storage.k8s.io"]
|
|
|
|
resources: ["volumesnapshots"]
|
|
|
|
verbs: ["get", "list", "watch", "update"]
|
|
|
|
- apiGroups: ["snapshot.storage.k8s.io"]
|
|
|
|
resources: ["volumesnapshotcontents"]
|
|
|
|
verbs: ["create", "get", "list", "watch", "update", "delete"]
|
|
|
|
- apiGroups: ["snapshot.storage.k8s.io"]
|
|
|
|
resources: ["volumesnapshotclasses"]
|
|
|
|
verbs: ["get", "list", "watch"]
|
|
|
|
- apiGroups: ["apiextensions.k8s.io"]
|
|
|
|
resources: ["customresourcedefinitions"]
|
2019-07-25 06:49:44 +00:00
|
|
|
verbs: ["create", "list", "watch", "delete", "get", "update"]
|
2019-02-27 14:02:07 +00:00
|
|
|
- apiGroups: ["csi.storage.k8s.io"]
|
|
|
|
resources: ["csinodeinfos"]
|
|
|
|
verbs: ["get", "list", "watch"]
|
2019-03-27 04:59:40 +00:00
|
|
|
- apiGroups: ["storage.k8s.io"]
|
|
|
|
resources: ["volumeattachments"]
|
|
|
|
verbs: ["get", "list", "watch", "update"]
|
2019-07-25 06:49:44 +00:00
|
|
|
- apiGroups: ["snapshot.storage.k8s.io"]
|
|
|
|
resources: ["volumesnapshots/status"]
|
|
|
|
verbs: ["update"]
|
2019-11-27 12:15:27 +00:00
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["persistentvolumeclaims/status"]
|
|
|
|
verbs: ["update", "patch"]
|
2019-02-07 09:59:26 +00:00
|
|
|
|
2018-07-18 14:48:43 +00:00
|
|
|
---
|
|
|
|
kind: ClusterRoleBinding
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
2019-01-23 15:05:15 +00:00
|
|
|
name: rbd-csi-provisioner-role
|
2018-07-18 14:48:43 +00:00
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
2019-01-23 15:05:15 +00:00
|
|
|
name: rbd-csi-provisioner
|
2018-07-18 14:48:43 +00:00
|
|
|
namespace: default
|
|
|
|
roleRef:
|
|
|
|
kind: ClusterRole
|
2019-01-23 15:05:15 +00:00
|
|
|
name: rbd-external-provisioner-runner
|
2018-07-18 14:48:43 +00:00
|
|
|
apiGroup: rbac.authorization.k8s.io
|
2019-02-27 06:45:40 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: Role
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
# replace with non-default namespace name
|
|
|
|
namespace: default
|
|
|
|
name: rbd-external-provisioner-cfg
|
|
|
|
rules:
|
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["endpoints"]
|
|
|
|
verbs: ["get", "watch", "list", "delete", "update", "create"]
|
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["configmaps"]
|
|
|
|
verbs: ["get", "list", "watch", "create", "delete"]
|
2019-07-25 06:49:44 +00:00
|
|
|
- apiGroups: ["coordination.k8s.io"]
|
|
|
|
resources: ["leases"]
|
|
|
|
verbs: ["get", "watch", "list", "delete", "update", "create"]
|
2019-02-27 06:45:40 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: RoleBinding
|
|
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
|
|
metadata:
|
|
|
|
name: rbd-csi-provisioner-role-cfg
|
|
|
|
# replace with non-default namespace name
|
|
|
|
namespace: default
|
|
|
|
subjects:
|
|
|
|
- kind: ServiceAccount
|
|
|
|
name: rbd-csi-provisioner
|
|
|
|
# replace with non-default namespace name
|
|
|
|
namespace: default
|
|
|
|
roleRef:
|
|
|
|
kind: Role
|
|
|
|
name: rbd-external-provisioner-cfg
|
|
|
|
apiGroup: rbac.authorization.k8s.io
|