Skip to content

Instantly share code, notes, and snippets.

@radikaled
Created May 13, 2022 04:43
Show Gist options
  • Save radikaled/ffc0032c4b66f67d77efcdfbc32e6f90 to your computer and use it in GitHub Desktop.
Save radikaled/ffc0032c4b66f67d77efcdfbc32e6f90 to your computer and use it in GitHub Desktop.
Azure Files NFS PV
apiVersion: v1
kind: PersistentVolume
metadata:
name: pv0001
spec:
capacity:
storage: 100Gi
accessModes:
- ReadWriteOnce
nfs:
path: /nfs/nfs
server: nfs.file.core.windows.net
mountOptions:
- vers=4
- minorversion=1
- sec=sys
persistentVolumeReclaimPolicy: Retain
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment