mirror of
https://github.com/helm/charts.git
synced 2026-09-05 12:27:30 +00:00
Signed-off-by: Cédric de Saint Martin <cdesaintmartin@wiremind.fr>
17 lines
484 B
YAML
17 lines
484 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}
|
|
labels:
|
|
app: {{ template "postgresql.name" . }}
|
|
chart: {{ template "postgresql.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
data:
|
|
{{- if .Values.metrics.customMetrics }}
|
|
custom-metrics.yaml: {{ toYaml .Values.metrics.customMetrics | quote }}
|
|
{{- end }}
|
|
{{- if .Values.pgHbaConf }}
|
|
pg_hba.conf: {{ .Values.pgHbaConf | quote }}
|
|
{{- end }}
|