apiVersion: v1 kind: Service metadata: name: {{ template "common.names.fullname" . }}-headless namespace: {{ template "zookeeper.namespace" . }} labels: {{- include "common.labels.standard" . | nindent 4 }} app.kubernetes.io/component: zookeeper {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} {{- end }} {{- if or .Values.commonAnnotations .Values.service.annotations }} annotations: {{- if .Values.service.headless.annotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.service.headless.annotations "context" $ ) | nindent 4 }}\ {{- end }} {{- if .Values.commonAnnotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} {{- end }} spec: type: ClusterIP clusterIP: None publishNotReadyAddresses: {{ .Values.service.publishNotReadyAddresses }} ports: {{ if not .Values.service.disableBaseClientPort }} - name: tcp-client port: 2181 targetPort: client {{ end }} {{ if .Values.tls.client.enabled }} - name: tcp-client-tls port: {{ .Values.service.tlsClientPort }} targetPort: client-tls {{ end }} - name: follower port: 2888 targetPort: follower - name: tcp-election port: 3888 targetPort: election selector: {{- include "common.labels.matchLabels" . | nindent 4 }} app.kubernetes.io/component: zookeeper