{{- if .Values.speaker.metrics.enabled }} apiVersion: v1 kind: Service metadata: name: {{ printf "%s-speaker-metrics" (include "common.names.fullname" .) }} namespace: {{ include "common.names.namespace" . | quote }} labels: {{- include "common.labels.standard" . | nindent 4 }} app.kubernetes.io/component: speaker {{- if .Values.commonLabels }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} {{- end }} annotations: {{- if .Values.commonAnnotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} {{- end }} {{- if .Values.speaker.metrics.service.annotations }} {{- include "common.tplvalues.render" ( dict "value" .Values.speaker.metrics.service.annotations "context" $ ) | nindent 4 }} {{- end }} spec: type: ClusterIP clusterIP: "None" selector: {{- include "common.labels.matchLabels" . | nindent 4 }} app.kubernetes.io/component: speaker ports: - name: metrics port: {{ .Values.speaker.metrics.service.port }} protocol: TCP targetPort: {{ .Values.speaker.containerPorts.metrics }} {{- end }}