123456789101112131415161718192021222324252627282930313233343536373839404142 |
- apiVersion: v1
- kind: Service
- metadata:
- name: {{ printf "%s-%s" (include "common.names.fullname" .) (default "headless" .Values.service.headless.servicenameOverride) | trunc 63 | trimSuffix "-" }}
- 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.headless.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.headless.publishNotReadyAddresses }}
- ports:
- {{- if not .Values.service.disableBaseClientPort }}
- - name: tcp-client
- port: {{ .Values.service.ports.client }}
- targetPort: client
- {{- end }}
- {{- if .Values.tls.client.enabled }}
- - name: tcp-client-tls
- port: {{ .Values.service.ports.tls }}
- targetPort: client-tls
- {{- end }}
- - name: tcp-follower
- port: {{ .Values.service.ports.follower }}
- targetPort: follower
- - name: tcp-election
- port: {{ .Values.service.ports.election }}
- targetPort: election
- selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
- app.kubernetes.io/component: zookeeper
|