Skip to content

Instantly share code, notes, and snippets.

@CalvinHartwell
Created February 7, 2018 14:55
Show Gist options
  • Select an option

  • Save CalvinHartwell/68c9ffb9a06949192c3f6dec3c534da6 to your computer and use it in GitHub Desktop.

Select an option

Save CalvinHartwell/68c9ffb9a06949192c3f6dec3c534da6 to your computer and use it in GitHub Desktop.
nfs-k8s-persistant-volume
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