helm-charts/hydrogen-web/templates/service.yaml
2023-05-20 21:26:39 +02:00

15 lines
376 B
YAML

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