ADD: added working nextcloud version
This commit is contained in:
31
k3s/apps/Nextcloud/manifest/nextcloud-apps-pv-pvc.yaml
Normal file
31
k3s/apps/Nextcloud/manifest/nextcloud-apps-pv-pvc.yaml
Normal file
@@ -0,0 +1,31 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: nextcloud-apps-pvc
|
||||
namespace: nextcloud
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
volumeName: nextcloud-apps-pv
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: nextcloud-apps-pv
|
||||
labels:
|
||||
app: nextcloud
|
||||
spec:
|
||||
capacity:
|
||||
storage: 1Gi
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
claimRef:
|
||||
namespace: nextcloud
|
||||
name: nextcloud-apps-pvc
|
||||
hostPath:
|
||||
path: /var/lib/nextcloud/custom_apps
|
||||
type: DirectoryOrCreate
|
||||
Reference in New Issue
Block a user