mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 08:47:24 +08:00
26 lines
823 B
YAML
26 lines
823 B
YAML
{{- if not .Values.existingSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "postgresql.fullname" . }}
|
|
labels:
|
|
app: {{ template "postgresql.name" . }}
|
|
chart: {{ template "postgresql.chart" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
type: Opaque
|
|
data:
|
|
{{- if .Values.postgresqlPassword }}
|
|
postgresql-password: {{ .Values.postgresqlPassword | b64enc | quote }}
|
|
{{- else }}
|
|
postgresql-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{- end }}
|
|
{{- if .Values.replication.enabled }}
|
|
{{- if .Values.replication.password }}
|
|
postgresql-replication-password: {{ .Values.replication.password | b64enc | quote }}
|
|
{{- else }}
|
|
postgresql-replication-password: {{ randAlphaNum 10 | b64enc | quote }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end -}}
|