generated from phoenix-oss/tenant-tpl
chore(postgres): add more comments explaining each section
This commit is contained in:
parent
001fc5a5de
commit
707b1d0bd8
1 changed files with 12 additions and 3 deletions
|
@ -69,9 +69,10 @@ spec:
|
||||||
options: []
|
options: []
|
||||||
encoding: UTF8
|
encoding: UTF8
|
||||||
backups:
|
backups:
|
||||||
# Backups are disabled in this example, but here's an example
|
# As indicated by the 'enabled' flag, backups are disabled on
|
||||||
# on how to configure this cluster to export backups to a S3
|
# this deployment. But the remaining of the block serves as an
|
||||||
# bucket hosted on a MinIO server.
|
# example of how to configure this cluster to export backups to
|
||||||
|
# a S3 bucket hosted on a MinIO server.
|
||||||
#
|
#
|
||||||
# For more information, refer to the helm chart's values.yaml
|
# For more information, refer to the helm chart's values.yaml
|
||||||
# or the official documentation at
|
# or the official documentation at
|
||||||
|
@ -91,10 +92,18 @@ spec:
|
||||||
secret:
|
secret:
|
||||||
create: true
|
create: true
|
||||||
wal:
|
wal:
|
||||||
|
# If exporting to MinIO S3, you may have to disable encryption.
|
||||||
|
# This is how you achieve it
|
||||||
encryption: ""
|
encryption: ""
|
||||||
data:
|
data:
|
||||||
encryption: ""
|
encryption: ""
|
||||||
scheduledBackups:
|
scheduledBackups:
|
||||||
|
# You can give it any name and change the scheduled time to what
|
||||||
|
# fits your strategy. This serves as an example of how to configure
|
||||||
|
# the cluster to export a daily backup to the S3 bucket using
|
||||||
|
# barman object storage. You can also back up volumes instead.
|
||||||
|
# Check the backup documentation to find more information on
|
||||||
|
# which option suits you best.
|
||||||
- name: daily-minio
|
- name: daily-minio
|
||||||
schedule: "@daily"
|
schedule: "@daily"
|
||||||
backupOwnerReference: self
|
backupOwnerReference: self
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue