fix(odoo): add --proxy-mode to args (Mixed-Content fix; chart 0.1.9)

This commit is contained in:
OdooSky v3
2026-05-13 05:52:31 +02:00
parent 4a8dc61a92
commit 7132d527a3
2 changed files with 10 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ description: |
Variation between instances is expressed via values.yaml only.
No chart variants. No string-templating in Tower.
type: application
version: 0.1.8
version: 0.1.9
appVersion: "1.0"
keywords:
- odoo

View File

@@ -398,6 +398,15 @@ spec:
# tenant has no extra addons. See platform-shim
# initContainer.
- "--addons-path=/usr/lib/python3/dist-packages/odoo/addons,{{ .Values.addonsMountPath }}"
# proxy-mode is mandatory in Tower's architecture — every
# Odoo runs behind Traefik (per-instance IngressRoute → TLS
# termination at the cluster Traefik). Without --proxy-mode
# Odoo ignores X-Forwarded-Proto and generates http:// URLs
# for assets / images / redirects, which the browser blocks
# as Mixed Content on the https:// page. Diagnosed during
# the havari-16 ARM migrate (2026-05-13). Safe default for
# every chart consumer.
- "--proxy-mode"
ports:
- name: http
containerPort: 8069