mirror of
https://github.com/truenas/charts.git
synced 2026-04-23 18:10:06 +08:00
19 lines
456 B
Smarty
19 lines
456 B
Smarty
{{- define "roundcube.service" -}}
|
|
service:
|
|
roundcube:
|
|
enabled: true
|
|
primary: true
|
|
type: NodePort
|
|
targetSelector: roundcube
|
|
ports:
|
|
webui:
|
|
enabled: true
|
|
primary: true
|
|
port: {{ .Values.roundcubeNetwork.webPort }}
|
|
nodePort: {{ .Values.roundcubeNetwork.webPort }}
|
|
targetPort: 80
|
|
targetSelector: roundcube
|
|
{{- include "ix.v1.common.app.postgresService" $ | nindent 2 }}
|
|
|
|
{{- end -}}
|