Files
charts/bitnami/postgresql/templates/secrets.yaml
T
693e7656d1 [bitnami/postgresql] Helm label best practices (#3021)
* [bitnami/postgresql] Add dependency on bitnami common chart

* [bitnami/postgresql] Replace deprecated standard Helm labels

* [bitnami/postgresql] Bump version to 9.0.0

Co-authored-by: Dennis Effing <dennis.effing@codecentric.de>
2020-07-14 12:27:03 +02:00

24 lines
998 B
YAML

{{- if (include "postgresql.createSecret" .) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "postgresql.fullname" . }}
labels:
{{- include "common.labels.standard" . | nindent 4 }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "postgresql.tplValue" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
{{- if and .Values.postgresqlPostgresPassword (not (eq .Values.postgresqlUsername "postgres")) }}
postgresql-postgres-password: {{ include "postgresql.postgres.password" . | b64enc | quote }}
{{- end }}
postgresql-password: {{ include "postgresql.password" . | b64enc | quote }}
{{- if .Values.replication.enabled }}
postgresql-replication-password: {{ include "postgresql.replication.password" . | b64enc | quote }}
{{- end }}
{{- if (and .Values.ldap.enabled .Values.ldap.bind_password)}}
postgresql-ldap-password: {{ .Values.ldap.bind_password | b64enc | quote }}
{{- end }}
{{- end -}}