Compare commits

..

4 Commits

Author SHA1 Message Date
158d4ca676 change method 2024-12-21 23:22:34 -06:00
32e232d8e2 force hardcoded value for testing 2024-12-21 23:08:17 -06:00
93d2f916fb use value for name 2024-12-21 22:53:59 -06:00
b1a6a2fd39 remove condition 2024-12-21 22:46:17 -06:00
4 changed files with 13 additions and 3 deletions

View File

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

View File

@@ -37,8 +37,11 @@ bootstrap:
{{- end }} {{- end }}
{{- else if eq .Values.mode "replica" }} {{- else if eq .Values.mode "replica" }}
initdb: initdb:
{{- if eq .Values.replica.importType "microservice" }} {{- with .Values.replica.importDatabaseName }}
database: {{ first .Values.replica.importDatabases }} database: {{ . }}
{{- end }}
{{- with .Values.replica.importOwner }}
owner: {{ . }}
{{- end }} {{- end }}
import: import:
type: {{ .Values.replica.importType }} type: {{ .Values.replica.importType }}

View File

@@ -60,4 +60,5 @@ spec:
enablePodMonitor: {{ and .Values.cluster.monitoring.enabled .Values.cluster.monitoring.podMonitor.enabled }} enablePodMonitor: {{ and .Values.cluster.monitoring.enabled .Values.cluster.monitoring.podMonitor.enabled }}
{{ include "cluster.bootstrap" . | nindent 2 }} {{ include "cluster.bootstrap" . | nindent 2 }}
{{ include "cluster.backup" . | nindent 2 }} {{ include "cluster.backup" . | nindent 2 }}

View File

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