Before configuring the Container Storage Interface (CSI) Storage Plugin, be sure to review the following notes about supported and unsupported features and parameters. See Container Storage Interface (CSI) Storage Plugin Overview for an overview of the Container Storage Interface (CSI) Storage Plugin.
volume create. Note these
considerations for using the parameters:aetype attribute will generate an error because the value
(1) is not enclosed in
quotations.namePrefix: "pv"
mountPrefix: "/pv"
type: "rw"
advisoryquota: "100M"
aetype: 1mountquota*createparentpathname*Specifying resources: requests: storage in a PersistentVolumeClaim (PVC)
(see Example: Statically Provisioning a Volume Using the Container Storage Interface (CSI) Storage Plugin) makes it unnecessary to set
the quota parameter.
Kubernetes access modes control how a PersistentVolume (PV) is mounted on the host. Access modes can be specified on both PVs and PVCs. Only Volumes with a matching Access Mode will be bound to a PVC. Container Storage Interface (CSI) Storage Plugin supports ROX (ReadOnlyMany), RWO (ReadWriteOnce) and RWX (ReadWriteMany) access modes for the PV and PVC spec. See Kubernetes CSI documentation for more information.
The Kubernetes reclaimPolicy parameter controls what happens to a
PersistentVolume if the corresponding PersistentVolumeClaim is deleted. The
Recycle Reclaim Policy is not supported by Kubernetes CSI Drivers, so it
cannot be used with the Kubernetes Interfaces for Data Fabric. You can specify the reclaim
policy normally when you configure a persistent volume.
| Reclaim Policy Value | Description | Support |
|---|---|---|
| Delete (default value) | The PersistentVolume and the data-fabric volume are deleted when the user deletes the corresponding PersistentVolumeClaim. | Supported |
| Retain | The PersistentVolume and the data-fabric volume are not deleted when the user deletes the corresponding PersistentVolumeClaim. | Supported |
For more information about the reclaim policy, see Change the Reclaim Policy of a PersistentVolume.
The Kubernetes mountOptions parameter is not supported for use
with the Container Storage Interface (CSI) Storage Plugin.