Compare commits

..

4 Commits

Author SHA1 Message Date
93d2f916fb use value for name 2024-12-21 22:53:59 -06:00
b1a6a2fd39 remove condition 2024-12-21 22:46:17 -06:00
d3307d4f70 use different function 2024-12-21 22:39:52 -06:00
1b7018d3bd fix database naming 2024-12-21 22:31:00 -06:00
3 changed files with 5 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2
name: postgres-cluster
version: 3.20.0
version: 3.20.4
description: Chart for cloudnative-pg cluster
keywords:
- database

View File

@@ -37,11 +37,7 @@ bootstrap:
{{- end }}
{{- else if eq .Values.mode "replica" }}
initdb:
{{- if .eq .Values.replica.importType "microservice" }}
{{- with index .Values.replica.importDatabases 0 }}
database: {{- . | quote }}
{{- end }}
{{- end }}
database: {{ .Values.replica.importDatabaseName }}
import:
type: {{ .Values.replica.importType }}
databases:

View File

@@ -139,6 +139,9 @@ replica:
importDatabases:
- app
# If type microservice select the name for the imported database.
importDatabaseName: app
# If type microservice no roles are imported and ignored
importRoles: []