Skip to content

Instantly share code, notes, and snippets.

@nilesh93
Last active December 17, 2022 12:05
Show Gist options
  • Save nilesh93/101d620dfc409e89ca607a60eec36d80 to your computer and use it in GitHub Desktop.
Save nilesh93/101d620dfc409e89ca607a60eec36d80 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: PersistentVolume
metadata:
name: nfs
spec:
capacity:
storage: 10Gi
accessModes:
- ReadWriteMany
nfs:
server: <ClusterIP>
path: "/"
---
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
name: nfs
spec:
accessModes:
- ReadWriteMany
storageClassName: ""
resources:
requests:
storage: 10Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment