helm-charts/mollysocket/templates/service.yaml
2025-03-17 19:30:27 +01:00

15 lines
373 B
YAML

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