fix issues, no default backups
All checks were successful
release-charts-postgres-cluster / release (push) Successful in 18s

This commit is contained in:
2025-05-24 03:09:47 -05:00
parent a7150e1d20
commit 245212e878
7 changed files with 46 additions and 42 deletions

View File

@@ -27,10 +27,10 @@ spec:
{{- if .wal }}
wal:
compression: {{ .wal.compression | default "snappy" }}
{{- with .wal.encryption }}
{{ with .wal.encryption }}
encryption: {{ . }}
{{- end }}
maxParallel: {{ .wal.maxParallel | default 1 }}
{{ end }}
maxParallel: {{ .wal.maxParallel | default "1" }}
{{- end }}
{{- if .wal }}
data:
@@ -45,14 +45,14 @@ spec:
{{- if .endpointCredentials }}
name: {{ .endpointCredentials }}
{{- else }}
name: {{- printf "%s-backup-secret" (include "cluster.name" $context) | trunc 63 | trimSuffix "-" -}}
name: {{ include "cluster.recoveryCredentials" $context }}
{{- end }}
key: ACCESS_KEY_ID
secretAccessKey:
{{- if .endpointCredentials }}
name: {{ .endpointCredentials }}
{{- else }}
name: {{- printf "%s-backup-secret" (include "cluster.name" $context) | trunc 63 | trimSuffix "-" -}}
name: {{ include "cluster.recoveryCredentials" $context }}
{{- end }}
key: ACCESS_SECRET_KEY
{{ end -}}