1bbf689821
- 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
19 lines
518 B
YAML
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 }}
|