1234567891011121314151617181920212223242526 |
- apiVersion: v1
- kind: Service
- metadata:
- name: {{ template "kafka.fullname" . }}-headless
- labels: {{- include "common.labels.standard" . | nindent 4 }}
- app.kubernetes.io/component: kafka
- {{- if .Values.commonLabels }}
- {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
- {{- end }}
- {{- if .Values.commonAnnotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- spec:
- type: ClusterIP
- clusterIP: None
- ports:
- - name: tcp-client
- port: {{ .Values.service.port }}
- protocol: TCP
- targetPort: kafka-client
- - name: tcp-internal
- port: {{ .Values.service.internalPort }}
- protocol: TCP
- targetPort: kafka-internal
- selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
- app.kubernetes.io/component: kafka
|