Files
prometheus-postgres-exporter/templates/secretExporterConfig.yaml
Markus Pesch 3c8a92fb04
All checks were successful
Helm / helm-lint (push) Successful in 12s
Helm / helm-unittest (push) Successful in 17s
refac(templates): remove parent dir 'prometheus-postgres-exporter'
2025-07-23 21:24:27 +02:00

20 lines
673 B
YAML

{{- if not .Values.config.exporterConfig.existingSecret.enabled }}
---
apiVersion: v1
kind: Secret
metadata:
{{- with (include "prometheus-postgres-exporter.secrets.exporterConfig.annotations" . | fromYaml) }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with (include "prometheus-postgres-exporter.secrets.exporterConfig.labels" . | fromYaml) }}
labels:
{{- toYaml . | nindent 4 }}
{{- end }}
name: {{ include "prometheus-postgres-exporter.fullname" . }}-exporter-config
namespace: {{ .Release.Namespace }}
stringData:
exporterConfig.yaml: |
{{- toYaml .Values.config.exporterConfig.secret.exporterConfig | nindent 4 }}
{{- end }}