a8d34b8af2
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/docker/library/odoo](https://hub.docker.com/_/odoo) ([source](https://redirect.github.com/odoo/docker)) | digest | `b1309b9` → `7642976` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9vZG9vIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9kaWdlc3QiXX0=-->
91 lines
2.1 KiB
YAML
91 lines
2.1 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: public.ecr.aws/docker/library/odoo
|
|
pullPolicy: IfNotPresent
|
|
tag: 19.0@sha256:76429765093a7b4411173f5858be3d7b8015e01d00ae80d4a0f3cc9b32c61c07
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 1000
|
|
runAsGroup: 1000
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8069
|
|
odoo:
|
|
additionalConf: []
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
initContainers:
|
|
init-db:
|
|
type: install
|
|
enabled: true
|
|
imageSelector: "image"
|
|
env:
|
|
ODOO_RC: /etc/odoo/odoo.conf
|
|
command:
|
|
- /bin/bash
|
|
args:
|
|
- -c
|
|
- |
|
|
/usr/bin/odoo --config=/etc/odoo/odoo.conf \
|
|
--stop-after-init \
|
|
--without-demo=all \
|
|
--init=base
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: http
|
|
path: /web/health
|
|
readiness:
|
|
enabled: true
|
|
type: http
|
|
path: /web/health
|
|
startup:
|
|
enabled: true
|
|
type: http
|
|
path: /web/health
|
|
env:
|
|
ODOO_RC: /etc/odoo/odoo.conf
|
|
persistence:
|
|
odoo:
|
|
enabled: true
|
|
targetSelector:
|
|
main:
|
|
main:
|
|
mountPath: "/var/lib/odoo"
|
|
init-db:
|
|
mountPath: "/var/lib/odoo"
|
|
addons:
|
|
enabled: true
|
|
targetSelector:
|
|
main:
|
|
main:
|
|
mountPath: "/mnt/extra-addons"
|
|
init-db:
|
|
mountPath: "/mnt/extra-addons"
|
|
odoo-config:
|
|
enabled: true
|
|
type: configmap
|
|
objectName: odoo-config
|
|
targetSelector:
|
|
main:
|
|
main:
|
|
mountPath: /etc/odoo/odoo.conf
|
|
subPath: odoo.conf
|
|
readOnly: true
|
|
init-db:
|
|
mountPath: /etc/odoo/odoo.conf
|
|
subPath: odoo.conf
|
|
readOnly: true
|
|
# Enabled postgres
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: odoo
|
|
database: odoo
|