Files
charts/upstreamed/postgresql/templates/secrets.yaml
2018-10-24 08:25:38 +00:00

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 }}