30 lines
1 KiB
YAML
30 lines
1 KiB
YAML
|
{{- if .Values.metrics.enabled }}
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ template "common.names.fullname" . }}-metrics
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{- include "common.labels.standard" . | nindent 4 }}
|
||
|
{{- 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 }}
|
||
|
{{- toYaml .Values.metrics.service.annotations | nindent 4 }}
|
||
|
spec:
|
||
|
type: {{ .Values.metrics.service.type }}
|
||
|
{{- if and (eq .Values.metrics.service.type "LoadBalancer") .Values.metrics.service.loadBalancerIP }}
|
||
|
loadBalancerIP: {{ .Values.metrics.service.loadBalancerIP }}
|
||
|
{{- end }}
|
||
|
ports:
|
||
|
- name: http-metrics
|
||
|
port: 9187
|
||
|
targetPort: http-metrics
|
||
|
selector:
|
||
|
{{- include "common.labels.matchLabels" . | nindent 4 }}
|
||
|
role: primary
|
||
|
{{- end }}
|