Files
chart/library/ix-dev/charts/nextcloud/templates/_persistence.tpl
Stavros Kois e9690b3ddf nextcloud: fix redis permission issue (#2561)
* nextcloud: fix redis permission issue

* if I could spell
2024-06-11 21:38:00 +03:00

205 lines
5.5 KiB
Smarty

{{- define "nextcloud.persistence" -}}
persistence:
html:
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.ncStorage.html) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: /var/www/html
{{- if .Values.ncStorage.isDataInTheSameVolume }}
subPath: html
{{- end }}
nextcloud-cron:
nextcloud-cron:
mountPath: /var/www/html
{{- if .Values.ncStorage.isDataInTheSameVolume }}
subPath: html
{{- end }}
postgresbackup:
postgresbackup:
mountPath: /nc-config
data:
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.ncStorage.data) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: {{ .Values.ncConfig.dataDir }}
{{- if .Values.ncStorage.isDataInTheSameVolume }}
subPath: data
{{- end }}
nextcloud-cron:
nextcloud-cron:
mountPath: {{ .Values.ncConfig.dataDir }}
{{- if .Values.ncStorage.isDataInTheSameVolume }}
subPath: data
{{- end }}
{{- if .Values.ncStorage.isDataInTheSameVolume }}
config:
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.ncStorage.html) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: /var/www/html/config
subPath: config
nextcloud-cron:
nextcloud-cron:
mountPath: /var/www/html/config
subPath: config
customapps:
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.ncStorage.html) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: /var/www/html/custom_apps
subPath: custom_apps
nextcloud-cron:
nextcloud-cron:
mountPath: /var/www/html/custom_apps
subPath: custom_apps
themes:
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.ncStorage.html) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: /var/www/html/themes
subPath: themes
nextcloud-cron:
nextcloud-cron:
mountPath: /var/www/html/themes
subPath: themes
{{- end }}
redis-tmp:
enabled: true
type: emptyDir
targetSelector:
redis:
redis:
mountPath: /tmp
redis-bitnami-tmp:
enabled: true
type: emptyDir
targetSelector:
redis:
redis:
mountPath: /opt/bitnami/redis/tmp
# Configuration files mounting
nc-config-opcache:
enabled: true
type: configmap
objectName: nextcloud-config
defaultMode: "0755"
targetSelector:
nextcloud:
nextcloud:
# z-99 is used to ensure that this file is loaded last
mountPath: /usr/local/etc/php/conf.d/opcache-z-99.ini
subPath: opcache.ini
nc-config-php:
enabled: true
type: configmap
objectName: nextcloud-config
defaultMode: "0755"
targetSelector:
nextcloud:
nextcloud:
# z-99 is used to ensure that this file is loaded last
mountPath: /usr/local/etc/php/conf.d/nextcloud-z-99.ini
subPath: php.ini
nc-config-limreqbody:
enabled: true
type: configmap
objectName: nextcloud-config
defaultMode: "0755"
targetSelector:
nextcloud:
nextcloud:
# https://github.com/nextcloud/docker/issues/1796
mountPath: /etc/apache2/conf-enabled/limitrequestbody.conf
subPath: limitrequestbody.conf
nc-occ:
enabled: true
type: configmap
objectName: nextcloud-config
defaultMode: "0755"
targetSelector:
nextcloud:
nextcloud:
mountPath: /usr/bin/occ
subPath: occ
tmp:
enabled: true
type: emptyDir
targetSelector:
nextcloud:
nextcloud:
mountPath: /tmp
{{- range $idx, $storage := .Values.ncStorage.additionalStorages }}
{{ printf "nc-%v:" (int $idx) }}
enabled: true
{{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }}
targetSelector:
nextcloud:
nextcloud:
mountPath: {{ $storage.mountPath }}
nextcloud-cron:
nextcloud-cron:
mountPath: {{ $storage.mountPath }}
{{- end }}
{{- if .Values.ncNetwork.certificateID }}
nginx-cert:
enabled: true
type: secret
objectName: nextcloud-cert
defaultMode: "0600"
items:
- key: tls.key
path: private.key
- key: tls.crt
path: public.crt
targetSelector:
nginx:
nginx:
mountPath: /etc/nginx-certs
readOnly: true
nginx-conf:
enabled: true
type: configmap
objectName: nginx
defaultMode: "0600"
items:
- key: nginx.conf
path: nginx.conf
targetSelector:
nginx:
nginx:
mountPath: /etc/nginx
readOnly: true
{{- end -}}
{{- include "ix.v1.common.app.postgresPersistence"
(dict "pgData" .Values.ncStorage.pgData
"pgBackup" .Values.ncStorage.pgBackup
) | nindent 2 }}
{{- end -}}
{{- define "isOldIxVol" -}}
{{- $oldDatasetName := "ix-nextcloud_data" -}}
{{- $isOld := "false" -}}
{{- $storage := .storage -}}
{{- if eq $storage.type "ixVolume" -}}
{{- if eq $storage.ixVolumeConfig.datasetName $oldDatasetName -}}
{{- $isOld = "true" -}}
{{- end -}}
{{- end -}}
{{- $isOld }}
{{- end -}}