Created
April 19, 2020 17:23
-
-
Save vamsijakkula/e0995dab1c2649ba221e9f470bd671d0 to your computer and use it in GitHub Desktop.
PersistentVolume
This file contains hidden or 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: nfs-pv | |
labels: | |
type: local | |
spec: | |
storageClassName: manual | |
capacity: | |
storage: 1Gi | |
accessModes: | |
- ReadWriteMany | |
nfs: | |
server: 192.168.1.8 | |
path: "/pv/nfs/test-volume" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment