| {{- /* |
| Copyright VMware, Inc. |
| SPDX-License-Identifier: APACHE-2.0 |
| */}} |
| |
| {{- if and .Values.metrics.enabled .Values.metrics.serviceMonitor.enabled (eq .Values.architecture "replication") }} |
| apiVersion: monitoring.coreos.com/v1 |
| kind: ServiceMonitor |
| metadata: |
| name: {{ include "postgresql.v1.readReplica.fullname" . }} |
| namespace: {{ default .Release.Namespace .Values.metrics.serviceMonitor.namespace | quote }} |
| {{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.metrics.serviceMonitor.labels .Values.commonLabels ) "context" . ) }} |
| labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }} |
| app.kubernetes.io/component: metrics-read |
| {{- if .Values.commonAnnotations }} |
| annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} |
| {{- end }} |
| spec: |
| {{- if .Values.metrics.serviceMonitor.jobLabel }} |
| jobLabel: {{ .Values.metrics.serviceMonitor.jobLabel }} |
| {{- end }} |
| selector: |
| {{- $svcLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.metrics.serviceMonitor.selector .Values.commonLabels ) "context" . ) }} |
| matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $svcLabels "context" $ ) | nindent 6 }} |
| app.kubernetes.io/component: metrics-read |
| endpoints: |
| - port: http-metrics |
| {{- if .Values.metrics.serviceMonitor.interval }} |
| interval: {{ .Values.metrics.serviceMonitor.interval }} |
| {{- end }} |
| {{- if .Values.metrics.serviceMonitor.scrapeTimeout }} |
| scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }} |
| {{- end }} |
| {{- if .Values.metrics.serviceMonitor.relabelings }} |
| relabelings: {{- include "common.tplvalues.render" ( dict "value" .Values.metrics.serviceMonitor.relabelings "context" $) | nindent 6 }} |
| {{- end }} |
| {{- if .Values.metrics.serviceMonitor.metricRelabelings }} |
| metricRelabelings: {{- include "common.tplvalues.render" ( dict "value" .Values.metrics.serviceMonitor.metricRelabelings "context" $) | nindent 6 }} |
| {{- end }} |
| {{- if .Values.metrics.serviceMonitor.honorLabels }} |
| honorLabels: {{ .Values.metrics.serviceMonitor.honorLabels }} |
| {{- end }} |
| namespaceSelector: |
| matchNames: |
| - {{ .Release.Namespace | quote }} |
| {{- end }} |