* feat(apps): Add more Apps using postgresql Squashed commit: move apps - dev to incubator (+29 squashed commit) [e306948ef] bump postgresql [d22c2cc62] bump common [cc5412370] remove ix_values.yaml [ca02334e6] Sync last env's and secrets [34b9d2af1] update gui on ff-syncserver [8dc32c07c] Add description on persistence [3ee0e4dac] Update secrets labels [4192e3af5] Update default-ports [d88de9fbc] fixedEnv on top... [61363ea19] tt-rss [8a124605e] traccar [6de23ed28] teedy [402e3916d] statping [f8da66a8c] shiori [c58d98c29] recipes [2390929fc] openkm [ca4cfcf75] odoo [34a8e0e96] fixedEnv on top [ec3c53f7b] miniflux [b47aab805] librespeed [f7252eeed] whoops [d4e312ff6] kanboard [c9e32f3eb] joplin-server [4a216a442] wikijs [8a529ba57] gotify [1130943a7] ff-sync [f1b43a783] etherpad [7365fe5da] dsmr-reader [ea7a6751e] babybuddy (+1 squashed commits) * enable varrun on librespeed * librespeed no readonly root * run librespeed as root
60 lines
1.1 KiB
YAML
60 lines
1.1 KiB
YAML
image:
|
|
repository: ghcr.io/nicholaswilde/odoo
|
|
pullPolicy: IfNotPresent
|
|
tag: version-14.0@sha256:f66aa76c1070f1d71da0e96a8b1dd1e41ab00d4ae61692d7dfc2267b6f1f1244
|
|
|
|
secret: {}
|
|
# USER: "odoo"
|
|
# PASSWORD: "myodoo"
|
|
|
|
# See more environment variables in the odoo documentation
|
|
# https://github.com/nicholaswilde/docker-odoo
|
|
env: {}
|
|
# HOST: "odoo-db"
|
|
|
|
envTpl:
|
|
USER: "{{ .Values.postgresql.postgresqlUsername }}"
|
|
|
|
envValueFrom:
|
|
PASSWORD:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: postgresql-password
|
|
HOST:
|
|
secretKeyRef:
|
|
name: dbcreds
|
|
key: plainhost
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8069
|
|
odoo:
|
|
ports:
|
|
odoo-1:
|
|
port: 8071
|
|
protocol: TCP
|
|
odoo-2:
|
|
port: 8072
|
|
protocol: TCP
|
|
|
|
persistence:
|
|
odoo:
|
|
enabled: true
|
|
mountPath: /var/lib/odoo
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
addons:
|
|
enabled: true
|
|
mountPath: /mnt/extra-addons
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
|
|
# Enabled postgres
|
|
postgresql:
|
|
enabled: true
|
|
existingSecret: "dbcreds"
|
|
postgresqlUsername: odoo
|
|
postgresqlDatabase: postgres
|