Skip to content

Instantly share code, notes, and snippets.

@zycon
Created May 25, 2020 22:14
Show Gist options
  • Save zycon/a1a1dab5c223e977f8df9c61e5204df6 to your computer and use it in GitHub Desktop.
Save zycon/a1a1dab5c223e977f8df9c61e5204df6 to your computer and use it in GitHub Desktop.
NFS PVC Claim
apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs-storage-logs
namespace: default
spec:
capacity:
storage: 50Gi
accessModes:
- ReadWriteMany
nfs:
server: nfs-server.default.svc.cluster.local
path: "/logs"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment