Compare commits

...

1 Commits

Author SHA1 Message Date
875f0c143c fix backup fields 2024-07-04 22:41:31 -05:00
3 changed files with 7 additions and 7 deletions

View File

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

View File

@@ -25,8 +25,8 @@ backup:
{{- if .Values.backup.wal.encryption }} {{- if .Values.backup.wal.encryption }}
encryption: {{ .Values.backup.wal.encryption }} encryption: {{ .Values.backup.wal.encryption }}
{{- end }} {{- end }}
{{- if .Values.backup.wal.maxParallel }} {{- if .Values.backup.wal.jobs }}
maxParallel: {{ .Values.backup.wal.maxParallel }} jobs: {{ .Values.backup.wal.jobs }}
{{- end }} {{- end }}
data: data:
{{- if .Values.backup.data.compression }} {{- if .Values.backup.data.compression }}
@@ -35,8 +35,8 @@ backup:
{{- if .Values.backup.data.encryption }} {{- if .Values.backup.data.encryption }}
encryption: {{ .Values.backup.data.encryption }} encryption: {{ .Values.backup.data.encryption }}
{{- end }} {{- end }}
{{- if .Values.backup.data.maxParallel }} {{- if .Values.backup.data.jobs }}
maxParallel: {{ .Values.backup.data.maxParallel }} jobs: {{ .Values.backup.data.jobs }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}

View File

@@ -180,14 +180,14 @@ backup:
# Whether to instruct the storage provider to encrypt WAL files. One of `` (use the storage container default), `AES256` or `aws:kms`. # Whether to instruct the storage provider to encrypt WAL files. One of `` (use the storage container default), `AES256` or `aws:kms`.
encryption: "" encryption: ""
# Number of WAL files to be archived or restored in parallel. # Number of WAL files to be archived or restored in parallel.
maxParallel: 2 jobs: 2
data: data:
# Data compression method. One of `` (for no compression), `gzip`, `bzip2` or `snappy`. # Data compression method. One of `` (for no compression), `gzip`, `bzip2` or `snappy`.
compression: snappy compression: snappy
# Whether to instruct the storage provider to encrypt data files. One of `` (use the storage container default), `AES256` or `aws:kms`. # Whether to instruct the storage provider to encrypt data files. One of `` (use the storage container default), `AES256` or `aws:kms`.
encryption: "" encryption: ""
# Number of data files to be archived or restored in parallel. # Number of data files to be archived or restored in parallel.
maxParallel: 2 jobs: 2
# Retention policy for backups # Retention policy for backups
retentionPolicy: "30d" retentionPolicy: "30d"