helm-charts/conduit/templates/wellknowncustom/service.yaml
2024-10-05 19:35:53 +00:00

18 lines
No EOL
487 B
YAML

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