Skip to content

Commit

Permalink
fix(nextcloud): make storageClass
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanguille committed Nov 19, 2024
1 parent ea86f61 commit 0f438d1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kubernetes/apps/default/nextcloud/app/nfs-pvc.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
---
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: nextcloud-nfs
provisioner: kubernetes.io/no-provisioner
volumeBindingMode: Immediate
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: nextcloud-nfs
spec:
capacity:
storage: 1Mi
storage: 500Gi
accessModes:
- ReadWriteMany
storageClassName: nextcloud-nfs
Expand Down

0 comments on commit 0f438d1

Please sign in to comment.