mirror of
https://github.com/bitnami/charts.git
synced 2026-03-06 15:10:15 +08:00
24 lines
766 B
YAML
24 lines
766 B
YAML
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 }}
|