Compare commits
3 Commits
postgres-c
...
postgres-c
Author | SHA1 | Date | |
---|---|---|---|
93a232947e | |||
667236239d | |||
875f0c143c |
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: postgres-cluster
|
name: postgres-cluster
|
||||||
version: 3.8.0
|
version: 3.8.2
|
||||||
description: Chart for cloudnative-pg cluster
|
description: Chart for cloudnative-pg cluster
|
||||||
keywords:
|
keywords:
|
||||||
- database
|
- database
|
||||||
|
@@ -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 }}
|
||||||
|
@@ -94,8 +94,8 @@ externalClusters:
|
|||||||
{{- if .Values.recovery.data.encryption }}
|
{{- if .Values.recovery.data.encryption }}
|
||||||
encryption: {{ .Values.recovery.data.encryption }}
|
encryption: {{ .Values.recovery.data.encryption }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.recovery.data.maxParallel }}
|
{{- if .Values.recovery.data.jobs }}
|
||||||
maxParallel: {{ .Values.recovery.data.maxParallel }}
|
jobs: {{ .Values.recovery.data.jobs }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
{{ fail "Invalid cluster mode!" }}
|
{{ fail "Invalid cluster mode!" }}
|
||||||
|
@@ -125,7 +125,7 @@ recovery:
|
|||||||
# 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
|
||||||
|
|
||||||
replica:
|
replica:
|
||||||
# See https://cloudnative-pg.io/documentation/current/database_import/
|
# See https://cloudnative-pg.io/documentation/current/database_import/
|
||||||
@@ -187,7 +187,7 @@ backup:
|
|||||||
# 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"
|
||||||
|
Reference in New Issue
Block a user