26 lines
848 B
YAML
26 lines
848 B
YAML
{{- if .Values.metrics.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}-metrics
|
|
labels:
|
|
{{- include "common.labels.standard" . | nindent 4 }}
|
|
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: master
|
|
{{- end }}
|