mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-24 10:53:40 +03:00
10 lines
203 B
YAML
10 lines
203 B
YAML
|
{{- if .Values.global.database.password -}}
|
||
|
apiVersion: v1
|
||
|
kind: Secret
|
||
|
metadata:
|
||
|
name: pg-postgresql
|
||
|
type: Opaque
|
||
|
data:
|
||
|
postgres-password: {{ .Values.global.database.password | b64enc }}
|
||
|
{{- end }}
|