Created
May 13, 2022 04:43
-
-
Save radikaled/ffc0032c4b66f67d77efcdfbc32e6f90 to your computer and use it in GitHub Desktop.
Azure Files NFS PV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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