Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/public/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ This sections describes all possible deploy parameters for PostgreSQL Backup Dae
| backupDaemon.s3Storage.bucket | string | no | n/a | Specifies name of S3 Bucket. |
| backupDaemon.s3Storage.prefix | string | no | postgres | Specifies name of sub-directory before common backup path inside bucket. |
| backupDaemon.s3Storage.untrustedCert | string | no | true | Specifies whether or not to verify SSL certificates. By default SSL certificates are verified. |
| backupDaemon.s3Storage.region | string | no | n/a | Specifies the name of the region associated with the client. |
| backupDaemon.s3Storage.region | string | no | us-east-1 | Specifies the name of the region associated with the client. |
| backupDaemon.externalPv.name | string | no | n/a | Specifies the name of External PV. |
| backupDaemon.externalPv.capacity | string | no | n/a | Specifies capacity of External PV. |
| backupDaemon.externalPv.storageClass | string | no | n/a | Specifies StorageClass of External PV. |
Expand Down
2 changes: 1 addition & 1 deletion operator/charts/patroni-services/templates/cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ spec:
bucket: {{ .Values.backupDaemon.s3Storage.bucket }}
prefix: {{ default "postgres" .Values.backupDaemon.s3Storage.prefix }}
untrustedCert: {{ default "true" .Values.backupDaemon.s3Storage.untrustedCert }}
region: {{ .Values.backupDaemon.s3Storage.region }}
region: {{ default "us-east-1" .Values.backupDaemon.s3Storage.region }}
{{ end }}
{{ if .Values.backupDaemon.externalPv }}
externalPv: {{ toYaml .Values.backupDaemon.externalPv | nindent 6 }}
Expand Down
Loading