Created
February 7, 2018 14:55
-
-
Save CalvinHartwell/68c9ffb9a06949192c3f6dec3c534da6 to your computer and use it in GitHub Desktop.
nfs-k8s-persistant-volume
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-1 | |
| spec: | |
| capacity: | |
| storage: 5Mi | |
| accessModes: | |
| - ReadWriteMany | |
| nfs: | |
| # FIXME: use the right IP | |
| server: NFS-Server-IP | |
| path: "/path-on-nfs-server" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment