maubot/helm/templates/service.yaml

16 lines
358 B
YAML
Raw Normal View History

2024-04-24 12:47:58 +00:00
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 }}