Create a VPG in the NVMesh Management software named your_custom_vpg.
Create a Storage-Class that will refer to the VPG we just created.

kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
  name: nvmesh-custom-vpg
provisioner: nvmesh-csi.excelero.com
allowVolumeExpansion: true
volumeBindingMode: Immediate
parameters:
  vpg: your_custom_vpg

Create a volume from the Storage-Class.

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: nvmesh-custom-vpg-volume
spec:
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 15Gi
  storageClassName: nvmesh-custom-vpg

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment