You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/using-cinder-csi-plugin.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -436,6 +436,25 @@ Following prerequisites needed for volume cloning to work :
436
436
437
437
Sample yamls can be found [here](https://github.com/kubernetes/cloud-provider-openstack/tree/master/examples/cinder-csi-plugin/clone)
438
438
439
+
### Multi-Attach Volumes
440
+
441
+
To avail the multiattach feature of cinder, specify the ID/name of cinder volume type that includes an extra-spec capability setting of `multiattach=<is> True` in storage class parameters as shown below.
442
+
443
+
> Note: This volume type must exist in cinder already (`openstack volume type list`)
444
+
445
+
This should enable to attach a volume to multiple hosts/servers simultaneously.
446
+
447
+
Example:
448
+
449
+
```
450
+
apiVersion: storage.k8s.io/v1
451
+
kind: StorageClass
452
+
metadata:
453
+
name: csi-sc-cinderplugin
454
+
provisioner: cinder.csi.openstack.org
455
+
parameters:
456
+
type: <multiattach-volume-type>
457
+
439
458
## Running Sanity Tests
440
459
441
460
Sanity tests create a real instance of driver and fake cloud provider.
0 commit comments