ceph-csi/deploy/rbd/kubernetes/csi-provisioner-rbac.yaml

59 lines
1.7 KiB
YAML
Raw Normal View History

2018-07-18 14:48:43 +00:00
apiVersion: v1
kind: ServiceAccount
metadata:
name: rbd-csi-provisioner
2018-07-18 14:48:43 +00:00
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: rbd-external-provisioner-runner
2018-07-18 14:48:43 +00:00
rules:
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list"]
- apiGroups: [""]
resources: ["persistentvolumes"]
verbs: ["get", "list", "watch", "create", "delete"]
- apiGroups: [""]
resources: ["persistentvolumeclaims"]
verbs: ["get", "list", "watch", "update"]
- apiGroups: ["storage.k8s.io"]
resources: ["storageclasses"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["events"]
verbs: ["list", "watch", "create", "update", "patch"]
2018-11-01 01:03:03 +00:00
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["get", "create", "update"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots"]
verbs: ["get", "list", "watch", "update"]
- apiGroups: [""]
resources: ["configmaps"]
verbs: ["get", "list", "create", "delete"]
- 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"]
verbs: ["create"]
2018-07-18 14:48:43 +00:00
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: rbd-csi-provisioner-role
2018-07-18 14:48:43 +00:00
subjects:
- kind: ServiceAccount
name: rbd-csi-provisioner
2018-07-18 14:48:43 +00:00
namespace: default
roleRef:
kind: ClusterRole
name: rbd-external-provisioner-runner
2018-07-18 14:48:43 +00:00
apiGroup: rbac.authorization.k8s.io