mirror of
https://github.com/truenas/charts.git
synced 2026-04-14 02:30:53 +08:00
* add `odoo` to `community` apps * add pg * add config, svc, persistence * add basic values for test * add tmp and validation * use the odoo user * update readme * remove interface config * switch db name * init * do init * extra values * update UI * remove redundant group * fix typo * bump common
27 lines
551 B
Smarty
27 lines
551 B
Smarty
{{- define "odoo.service" -}}
|
|
service:
|
|
odoo:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: odoo
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.odooNetwork.webPort }}
|
|
nodePort: {{ .Values.odooNetwork.webPort }}
|
|
targetSelector: odoo
|
|
# Postgres
|
|
postgres:
|
|
enabled: true
|
|
type: ClusterIP
|
|
targetSelector: postgres
|
|
ports:
|
|
postgres:
|
|
enabled: true
|
|
primary: true
|
|
port: 5432
|
|
targetSelector: postgres
|
|
{{- end -}}
|