fix(mycloud-services): add additinalParams to postgres database
This commit is contained in:
parent
8bedadd126
commit
a68cf48702
2 changed files with 5 additions and 0 deletions
|
@ -44,5 +44,8 @@ spec:
|
||||||
{{- if (eq $config.type "postgresql") }}
|
{{- if (eq $config.type "postgresql") }}
|
||||||
{{ $database }}:
|
{{ $database }}:
|
||||||
owner: {{ $config.username | default $database }}
|
owner: {{ $config.username | default $database }}
|
||||||
|
{{- with $config.additionalParams }}
|
||||||
|
additionalParams: {{ . | quote }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -30,3 +30,5 @@ databases:
|
||||||
username: example-password
|
username: example-password
|
||||||
# -- if not set generated by .Values.commons.masterPassword and databasename
|
# -- if not set generated by .Values.commons.masterPassword and databasename
|
||||||
password:
|
password:
|
||||||
|
# -- additional params for databases
|
||||||
|
additionalParams:
|
||||||
|
|
Loading…
Add table
Reference in a new issue