Add DigitalOcean storage
This commit is contained in:
parent
a314988c99
commit
4840d9e0e1
24 changed files with 587 additions and 1 deletions
19
files/digitalocean/csi-do-attacher-role-ClusterRole.yaml
Normal file
19
files/digitalocean/csi-do-attacher-role-ClusterRole.yaml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Attacher must be able to work with PVs, nodes and VolumeAttachments
|
||||
kind: ClusterRole
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
metadata:
|
||||
name: csi-do-attacher-role
|
||||
rules:
|
||||
- apiGroups: [""]
|
||||
resources: ["persistentvolumes"]
|
||||
verbs: ["get", "list", "watch", "update", "patch"]
|
||||
- apiGroups: [""]
|
||||
resources: ["nodes"]
|
||||
verbs: ["get", "list", "watch"]
|
||||
- apiGroups: ["storage.k8s.io"]
|
||||
resources: ["csinodes"]
|
||||
verbs: ["get", "list", "watch"]
|
||||
- apiGroups: ["storage.k8s.io"]
|
||||
resources: ["volumeattachments"]
|
||||
verbs: ["get", "list", "watch", "update", "patch"]
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue