metrics-configmap.yaml 761 B

12345678910111213141516
  1. {{- if and .Values.metrics.enabled .Values.metrics.customMetrics (eq .Values.architecture "replication") }}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: {{ printf "%s-metrics" (include "postgresql.readReplica.fullname" .) }}
  6. namespace: {{ .Release.Namespace | quote }}
  7. labels: {{- include "common.labels.standard" . | nindent 4 }}
  8. {{- if .Values.commonLabels }}
  9. {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
  10. {{- end }}
  11. {{- if .Values.commonAnnotations }}
  12. annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
  13. {{- end }}
  14. data:
  15. custom-metrics.yaml: {{ toYaml .Values.metrics.customMetrics | quote }}
  16. {{- end }}