Skip to content
Snippets Groups Projects
Commit d5ec44f0 authored by Varac's avatar Varac
Browse files

Merge branch...

Merge branch '864-make-onlyoffice-s-database-persistent-save-the-postgresql-data-in-a-pvc' into 'master'

Resolve "Make OnlyOffice's database persistent (save the PostgresQL data in a PVC)"

Closes #864

See merge request openappstack/openappstack!448
parents 3a058364 eb42fe5a
No related branches found
No related tags found
No related merge requests found
......@@ -24,3 +24,16 @@ spec:
requests:
storage: 512Mi
storageClassName: local-path
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-postgresql
spec:
accessModes:
- ReadWriteOnce
volumeMode: Filesystem
resources:
requests:
storage: 512Mi
storageClassName: local-path
......@@ -156,6 +156,9 @@ spec:
requests:
cpu: 200m
memory: 128Mi
persistence:
enabled: true
existingClaim: "nextcloud-postgresql"
rabbitmq:
rabbitmq:
......
......@@ -13,4 +13,4 @@ spec:
# For all available options, see:
# https://toolkit.fluxcd.io/components/source/api/#source.toolkit.fluxcd.io/v1beta1.GitRepositoryRef
ref:
tag: 0.2.7
tag: 0.2.8
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