element-call/helm-chart/templates/service.yaml
Johannes Meixner 1bbf689821 Improve Helm Chart
- use official v0.3.13 docker images hosted on GitHub
- load configs for Element-Call (public/config.json), nginx and SSL
  certs through ConfigMaps / PersistentVolumeClaims
2023-07-10 17:21:02 +02:00

19 lines
518 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "element-call.fullname" . }}
labels:
{{- include "element-call.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
- port: {{ .Values.service.port_https }}
targetPort: {{ .Values.service.port_https }}
protocol: TCP
name: element-https
selector:
{{- include "element-call.selectorLabels" . | nindent 4 }}