Skip to content
Snippets Groups Projects
Verified Commit ca8de136 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

make a PVC for ONLYOFFICE and use it

parent 48477fc7
No related branches found
No related tags found
1 merge request!452Resolve "[ONLYOFFICE] make `/var/lib/onlyoffice` a persistent directory"
......@@ -37,3 +37,16 @@ spec:
requests:
storage: 512Mi
storageClassName: local-path
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-onlyoffice-data
spec:
accessModes:
- ReadWriteOnce
volumeMode: Filesystem
resources:
requests:
storage: 512Mi
storageClassName: local-path
......@@ -144,6 +144,10 @@ spec:
secretName: oas-nextcloud-office
jwtSecret: "${onlyoffice_jwt_secret}"
persistence:
enabled: true
existingClaim: "nextcloud-onlyoffice-data"
postgresql:
postgresqlPassword: "${onlyoffice_postgresql_password}"
resources:
......
......@@ -13,4 +13,5 @@ spec:
# For all available options, see:
# https://toolkit.fluxcd.io/components/source/api/#source.toolkit.fluxcd.io/v1beta1.GitRepositoryRef
ref:
tag: 0.2.8
# tag: 0.2.8
branch: 967-prevent-loss-of-onlyoffice-documents
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment