add default endpoint
All checks were successful
release-charts-postgres-cluster / release (push) Successful in 44s

This commit is contained in:
2025-05-24 03:16:01 -05:00
parent e251ff65ef
commit deaa0c94d8
4 changed files with 5 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ spec:
{{ end }}
{{- range $objectStore := .Values.backup.objectStore }}
- name: barman-cloud.cloudnative-pg.io
isWALArchiver: {{ $objectStore.isWALArchiver }}
isWALArchiver: {{ $objectStore.isWALArchiver | default true }}
parameters:
barmanObjectName: "{{ include "cluster.name" $ }}-{{ $objectStore.name }}-backup"
{{- end }}

View File

@@ -45,14 +45,14 @@ spec:
{{- if .endpointCredentials }}
name: {{ .endpointCredentials }}
{{- else }}
name: {{ include "cluster.recoveryCredentials" $context }}
name: {{ include "cluster.backupCredentials" $context }}
{{- end }}
key: ACCESS_KEY_ID
secretAccessKey:
{{- if .endpointCredentials }}
name: {{ .endpointCredentials }}
{{- else }}
name: {{ include "cluster.recoveryCredentials" $context }}
name: {{ include "cluster.backupCredentials" $context }}
{{- end }}
key: ACCESS_SECRET_KEY
{{ end -}}