mirror of
https://github.com/truenas/charts.git
synced 2026-05-03 07:21:15 +08:00
* gitea * joplin * listmonk * n8n * odoo * paperless * vaultwarden * planka * linkding * bump * bump joplin too * add 2 more
75 lines
2.3 KiB
Smarty
75 lines
2.3 KiB
Smarty
{{- define "odoo.persistence" -}}
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.odooStorage.data) | nindent 4 }}
|
|
targetSelector:
|
|
odoo:
|
|
odoo:
|
|
mountPath: /var/lib/odoo
|
|
02-db-init:
|
|
mountPath: /var/lib/odoo
|
|
{{- if and (eq .Values.odooStorage.data.type "ixVolume")
|
|
(not (.Values.odooStorage.data.ixVolumeConfig | default dict).aclEnable) }}
|
|
01-permissions:
|
|
mountPath: /mnt/directories/data
|
|
{{- end }}
|
|
addons:
|
|
enabled: true
|
|
{{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.odooStorage.addons) | nindent 4 }}
|
|
targetSelector:
|
|
odoo:
|
|
odoo:
|
|
mountPath: /mnt/extra-addons
|
|
02-db-init:
|
|
mountPath: /mnt/extra-addons
|
|
{{- if and (eq .Values.odooStorage.addons.type "ixVolume")
|
|
(not (.Values.odooStorage.addons.ixVolumeConfig | default dict).aclEnable) }}
|
|
01-permissions:
|
|
mountPath: /mnt/directories/addons
|
|
{{- end }}
|
|
tmp:
|
|
enabled: true
|
|
type: emptyDir
|
|
targetSelector:
|
|
odoo:
|
|
odoo:
|
|
mountPath: /tmp
|
|
02-db-init:
|
|
mountPath: /tmp
|
|
|
|
config:
|
|
enabled: true
|
|
type: secret
|
|
objectName: odoo-config
|
|
targetSelector:
|
|
odoo:
|
|
odoo:
|
|
mountPath: /etc/odoo/odoo.conf
|
|
readOnly: true
|
|
subPath: odoo.conf
|
|
02-db-init:
|
|
mountPath: /etc/odoo/odoo.conf
|
|
readOnly: true
|
|
subPath: odoo.conf
|
|
|
|
{{- range $idx, $storage := .Values.odooStorage.additionalStorages }}
|
|
{{ printf "odoo-%v:" (int $idx) }}
|
|
enabled: true
|
|
{{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }}
|
|
targetSelector:
|
|
odoo:
|
|
odoo:
|
|
mountPath: {{ $storage.mountPath }}
|
|
{{- if and (eq $storage.type "ixVolume") (not ($storage.ixVolumeConfig | default dict).aclEnable) }}
|
|
01-permissions:
|
|
mountPath: /mnt/directories{{ $storage.mountPath }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- include "ix.v1.common.app.postgresPersistence"
|
|
(dict "pgData" .Values.odooStorage.pgData
|
|
"pgBackup" .Values.odooStorage.pgBackup
|
|
) | nindent 2 }}
|
|
{{- end -}}
|