Skip to content

Instantly share code, notes, and snippets.

@zutigrm
Created April 20, 2021 21:30
Show Gist options
  • Save zutigrm/9447b36e61acb7842417c23dd418150b to your computer and use it in GitHub Desktop.
Save zutigrm/9447b36e61acb7842417c23dd418150b to your computer and use it in GitHub Desktop.
Nextcloud pv and pvc declaration
apiVersion: v1
kind: PersistentVolume
metadata:
name: nextcloud-shared-storage
labels:
type: local
spec:
storageClassName: ncloud
capacity:
storage: 5Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/nextcloud/data"
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-shared-storage-claim
labels:
app: nextcloud
spec:
storageClassName: ncloud
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment