helm-charts/mautrix-bridge/templates/service.yaml

19 lines
491 B
YAML
Raw Permalink Normal View History

2024-02-19 00:08:20 +01:00
{{- if and .Values.config .Values.config.appservice }}
apiVersion: v1
kind: Service
metadata:
name: {{ include "mautrix-bridge.fullname" . }}
2024-02-19 00:08:20 +01:00
labels:
{{- include "mautrix-bridge.labels" . | nindent 4 }}
2024-02-19 00:08:20 +01:00
spec:
type: {{ .Values.service.type }}
publishNotReadyAddresses: true
selector:
{{- include "mautrix-bridge.selectorLabels" . | nindent 4 }}
2024-02-19 00:08:20 +01:00
ports:
- port: {{ .Values.config.appservice.port }}
targetPort: http
protocol: TCP
name: http
{{- end }}