18 lines
No EOL
487 B
YAML
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 }} |