12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- apiVersion: v1
- kind: Service
- metadata:
- name: {{ template "common.names.fullname" . }}
- 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.annotations }}
- {{- include "common.tplvalues.render" ( dict "value" .Values.service.annotations "context" $ ) | nindent 4 }}
- {{- end }}
- {{- if .Values.commonAnnotations }}
- {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- {{- end }}
- spec:
- type: {{ .Values.service.type }}
- {{- if and (.Values.service.loadBalancerIP) (eq .Values.service.type "LoadBalancer") }}
- loadBalancerIP: {{ .Values.service.loadBalancerIP }}
- {{- end }}
- ports:
- {{ if not .Values.service.tls.disable_base_client_port }}
- - name: tcp-client
- port: 2181
- targetPort: client
- {{ end }}
- {{ if .Values.service.tls.client_enable }}
- - name: tcp-client-tls
- port: {{ .Values.service.tls.client_port }}
- 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
|