maubot/helm/templates/service.yaml
2024-04-24 14:47:58 +02:00

16 lines
358 B
YAML

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