Files
chart/library/ix-dev/community/odoo/templates/_service.tpl
Stavros Kois 56445771a5 NAS-123658 / 24.04 / add odoo to community apps (#1468)
* 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
2023-08-30 14:22:20 +03:00

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 -}}