helm-charts/conduit/templates/service.yaml

16 lines
361 B
YAML
Raw Normal View History

2023-08-17 23:07:21 +02:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "conduit.fullname" . }}
labels:
{{- include "conduit.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "conduit.selectorLabels" . | nindent 4 }}