To access a sharedv4 volume outside of the Portworx cluster, add the allow_ips label to the volume you wish to export, specifying a semi-colon separated list of IP addresses of non-Portworx nodes you wish to mount your sharedv4 volume to:
To mount the NFS shared volume on non-Portworx node(node3):
1 2 3 4 5 6 7 8
$ showmount -e node1 Export list for node1: /var/lib/osd/pxns/229379759785727331 node1,node3
$ mkdir /mnt/data $ mount -t nfs node1:/var/lib/osd/pxns/229379759785727331 /mnt/data $ mount | grep data node1:/var/lib/osd/pxns/229379759785727331 on /mnt/data type nfs4 (rw,relatime,vers=4.1,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=node3,local_lock=none,addr=node1)