initial setup of nextcloud

TODO: database, config, apps folder
This commit is contained in:
2022-11-05 21:47:37 -04:00
parent ad9b209742
commit 62c58758f3
15 changed files with 315 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
---
# persistent volume
apiVersion: v1
kind: PersistentVolume
metadata:
name: nextcloud-pv-apps-local
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 100Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/opt/data/nextcloud2/apps"