{{- /* Copyright VMware, Inc. SPDX-License-Identifier: APACHE-2.0 */}} {{- if .Values.metrics.enabled }} apiVersion: v1 kind: Service metadata: name: {{ template "common.names.fullname" . }}-metrics namespace: {{ template "zookeeper.namespace" . }} labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }} app.kubernetes.io/component: metrics {{- if or .Values.metrics.service.annotations .Values.commonAnnotations }} {{- $annotations := merge .Values.metrics.service.annotations .Values.commonAnnotations }} annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }} {{- end }} spec: type: {{ .Values.metrics.service.type }} ports: - name: tcp-metrics port: {{ .Values.metrics.service.port }} targetPort: metrics {{- $podLabels := merge .Values.podLabels .Values.commonLabels }} selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }} app.kubernetes.io/component: zookeeper {{- end }}