mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
20 lines
617 B
YAML
20 lines
617 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}
|
|
labels:
|
|
app: {{ template "postgresql.fullname" . }}
|
|
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
|
release: "{{ .Release.Name }}"
|
|
heritage: "{{ .Release.Service }}"
|
|
type: Opaque
|
|
data:
|
|
{{ if .Values.postgresPassword }}
|
|
postgres-password: {{ .Values.postgresPassword | b64enc | quote }}
|
|
{{ else }}
|
|
postgres-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{ end }}
|
|
{{- if .Values.metrics.customMetrics }}
|
|
custom-metrics.yaml: {{ toYaml .Values.metrics.customMetrics | b64enc | quote }}
|
|
{{- end }}
|