Provisioning Read-Write-Many (RWM) PVCs
NFS server provisioner stable helm chart is widely used for deploying NFS servers on Kubernetes cluster. This server provides PVCs in RWM mode so that multiple web applications can access the data in a shared fashion. OpenEBS cStor volumes are used as persistent backend storage for these nfs servers to provide a scalable and manageable RWM shared storage solution.
Below are advantage of using NFS provisioner over OpenEBS cStor volumes
- NFS data is replicated, highly available across zones if configured accordingly
- Data is thin provisioned. Persistent volume mounts are configured at the required size and cStor physical pools can be started with as low as one disk per pool instance and grow as the storage is used up
Setting up a single NFS server
Select or create a cStor pool
Select or create a cStor pool that satisfies the performance, and availability requirements
Select or create a cStor storage Class
Create a storage class to point to the above selected pool and also select number of replicas and default size of the volume.
Create a namespace for deploying NFS server provisioner
kubectl create ns <ns-nfs-wordpress1>
Deploy NFS server provisioner
Deploy NFS server provisioner into the above namespace using stable helm chart. Pass the following main parameter values.
- namespace: Namespace for the NFS server provisioner which you have created in the previous section.
- name: Release name for helm installation.
- persistence.storageClass: StorageClass used for provisioning cStor volume.
- persistence.size: cStor volume size which will be used for running nfs provisioner.
- storageClass.name: Provide a name for NFS StorageClass to be created which can be used by the web application PVCs.
helm install stable/nfs-server-provisioner --namespace=<ns-nfs-wordpress1> --name=<release-name> --set=persistence.enabled=true,persistence.storageClass=<openebs-cstor-sc>,persistence.size=<cStor-volume-size>,storageClass.name=<nfs-sc-name>,storageClass.provisionerName=openebs.io/nfs
An example helm install command is
helm install stable/nfs-server-provisioner --namespace=nfs-wp-provisioner --name=openebs-nfs-wordpress --set=persistence.enabled=true,persistence.storageClass=openebs-cstor-disk,persistence.size=5Gi,storageClass.name=wordpress-nfs-sc1,storageClass.provisionerName=openebs.io/nfs
Note: It is recommended that the OpenEBS storage class specifies 10% more space than what is required by the RWM PVC. For example, if RWM PVC requires 100G, then provision cStor volume with 110G.
Provision RWX volume using the PVC
Use the StorageClass which is created in above command and create a new PVC and use the volume in your applications.
Setting up multiple NFS servers
When multiple NFS shares are needed, use multiple NFS provisioners. Each NFS server manages one NFS server. Same or different OpenEBS StorageClass can be used for multiple NFS provisioners.
See Also:
cStor Overview
cStorPools
Setting up Object Storage
Feedback
Was this page helpful?
Thanks for the feedback. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement. Engage and get additional help on https://kubernetes.slack.com/messages/openebs/.