Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
cloud-provider-openstack/manifests/cinder-csi-plugin/cinder-csi-controllerplugin-rbac.yaml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
184 lines (177 sloc)
5.19 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This YAML file contains RBAC API objects, | |
# which are necessary to run csi controller plugin | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: csi-cinder-controller-sa | |
namespace: kube-system | |
--- | |
# external attacher | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-attacher-role | |
rules: | |
- apiGroups: [""] | |
resources: ["persistentvolumes"] | |
verbs: ["get", "list", "watch", "patch"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: ["csinodes"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: ["volumeattachments"] | |
verbs: ["get", "list", "watch", "patch"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: ["volumeattachments/status"] | |
verbs: ["patch"] | |
- apiGroups: ["coordination.k8s.io"] | |
resources: ["leases"] | |
verbs: ["get", "watch", "list", "delete", "update", "create"] | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-attacher-binding | |
subjects: | |
- kind: ServiceAccount | |
name: csi-cinder-controller-sa | |
namespace: kube-system | |
roleRef: | |
kind: ClusterRole | |
name: csi-attacher-role | |
apiGroup: rbac.authorization.k8s.io | |
--- | |
# external Provisioner | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-provisioner-role | |
rules: | |
- 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: ["nodes"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: ["csinodes"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: [""] | |
resources: ["events"] | |
verbs: ["list", "watch", "create", "update", "patch"] | |
- apiGroups: ["snapshot.storage.k8s.io"] | |
resources: ["volumesnapshots"] | |
verbs: ["get", "list"] | |
- apiGroups: ["snapshot.storage.k8s.io"] | |
resources: ["volumesnapshotcontents"] | |
verbs: ["get", "list"] | |
- apiGroups: ["storage.k8s.io"] | |
resources: ["volumeattachments"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["coordination.k8s.io"] | |
resources: ["leases"] | |
verbs: ["get", "watch", "list", "delete", "update", "create"] | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-provisioner-binding | |
subjects: | |
- kind: ServiceAccount | |
name: csi-cinder-controller-sa | |
namespace: kube-system | |
roleRef: | |
kind: ClusterRole | |
name: csi-provisioner-role | |
apiGroup: rbac.authorization.k8s.io | |
--- | |
# external snapshotter | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-snapshotter-role | |
rules: | |
- apiGroups: [""] | |
resources: ["events"] | |
verbs: ["list", "watch", "create", "update", "patch"] | |
# Secret permission is optional. | |
# Enable it if your driver needs secret. | |
# For example, `csi.storage.k8s.io/snapshotter-secret-name` is set in VolumeSnapshotClass. | |
# See https://kubernetes-csi.github.io/docs/secrets-and-credentials.html for more details. | |
# - apiGroups: [""] | |
# resources: ["secrets"] | |
# verbs: ["get", "list"] | |
- apiGroups: ["snapshot.storage.k8s.io"] | |
resources: ["volumesnapshotclasses"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: ["snapshot.storage.k8s.io"] | |
resources: ["volumesnapshotcontents"] | |
verbs: ["create", "get", "list", "watch", "update", "delete", "patch"] | |
- apiGroups: ["snapshot.storage.k8s.io"] | |
resources: ["volumesnapshotcontents/status"] | |
verbs: ["update", "patch"] | |
- apiGroups: ["coordination.k8s.io"] | |
resources: ["leases"] | |
verbs: ["get", "watch", "list", "delete", "update", "create"] | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-snapshotter-binding | |
subjects: | |
- kind: ServiceAccount | |
name: csi-cinder-controller-sa | |
namespace: kube-system | |
roleRef: | |
kind: ClusterRole | |
name: csi-snapshotter-role | |
apiGroup: rbac.authorization.k8s.io | |
--- | |
# External Resizer | |
kind: ClusterRole | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-resizer-role | |
rules: | |
# The following rule should be uncommented for plugins that require secrets | |
# for provisioning. | |
# - apiGroups: [""] | |
# resources: ["secrets"] | |
# verbs: ["get", "list", "watch"] | |
- apiGroups: [""] | |
resources: ["persistentvolumes"] | |
verbs: ["get", "list", "watch", "patch"] | |
- apiGroups: [""] | |
resources: ["persistentvolumeclaims"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: [""] | |
resources: ["pods"] | |
verbs: ["get", "list", "watch"] | |
- apiGroups: [""] | |
resources: ["persistentvolumeclaims/status"] | |
verbs: ["patch"] | |
- apiGroups: [""] | |
resources: ["events"] | |
verbs: ["list", "watch", "create", "update", "patch"] | |
- apiGroups: ["coordination.k8s.io"] | |
resources: ["leases"] | |
verbs: ["get", "watch", "list", "delete", "update", "create"] | |
--- | |
kind: ClusterRoleBinding | |
apiVersion: rbac.authorization.k8s.io/v1 | |
metadata: | |
name: csi-resizer-binding | |
subjects: | |
- kind: ServiceAccount | |
name: csi-cinder-controller-sa | |
namespace: kube-system | |
roleRef: | |
kind: ClusterRole | |
name: csi-resizer-role | |
apiGroup: rbac.authorization.k8s.io | |