These notes describe the first release of the Container Storage Interface (CSI) Storage Plugin.
You may also be interested in the Kubernetes Release Notes.
| Version | 1.0 |
| Release Date | February 2019 |
| MapR Version Interoperability | Compatible with MapR 6.1.0 or later. |
| Kubernetes Compatibility | Kubernetes 1.13.0 and later.* |
| OpenShift Compatibility | 4.1 and 4.2 |
| CSI Driver Downloads | See Downloads (CSI) for more information. |
| Documentation | Container Storage Interface (CSI) Storage Plugin Overview |
| Related Resources | https://mapr.com/solutions/data-fabric/kubernetes/ |
* Kubernetes alpha features are not supported.
This first release of the Container Storage Interface (CSI) Storage Plugin includes
.yaml configuration files that can be installed onto a Kubernetes
cluster. Once installed, these containers provide a CSI Driver for the filesystem volume plug-in and a Kubernetes Dynamic Volume Provisioner
that permit static and dynamic provisioning of MapR storage from Kubernetes.
None.
Note the following limitations:
Note the following known issues:
readOnly in the
volumeAttributes. For example, the following is supported:
csi:
nodePublishSecretRef:
name: "mapr-ticket-secret"
namespace: "test-csi"
driver: com.mapr.csi-kdf
volumeHandle: pv-securepv-test-read-only-id
volumeAttributes:
volumePath: "/user/root"
cluster: "clusterA"
cldbHosts: "10.10.10.210"
securityType: "secure"
readOnly: "true"
The following is not supported:
csi:
nodePublishSecretRef:
name: "mapr-ticket-secret"
namespace: "test-csi"
driver: com.mapr.csi-kdf
volumeHandle: pv-securepv-test-read-only-id
readOnly: true
volumeAttributes:
volumePath: "/user/root"
cluster: "clusterA"
cldbHosts: "10.10.10.210"
securityType: "secure"None.