123456789101112131415161718192021222324252627 |
- {{- /*
- Copyright Broadcom, Inc. All Rights Reserved.
- 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 := include "common.tplvalues.merge" ( dict "values" ( list .Values.metrics.service.annotations .Values.commonAnnotations ) "context" . ) }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}
- {{- end }}
- spec:
- type: {{ .Values.metrics.service.type }}
- ports:
- - name: http-metrics
- port: {{ .Values.metrics.service.port }}
- targetPort: metrics
- {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
- selector: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 4 }}
- app.kubernetes.io/component: zookeeper
- {{- end }}
|