Skip to content

Commit f927d66

Browse files
authored
add default values to operatorconfiguration crd (#1283)
* add default values to operatorconfiguration crd * leave default for enable_master_load_balancer to true * add missing bits for new logical backup option * fix wrong lb tag and update chart package
1 parent 2eac36d commit f927d66

File tree

11 files changed

+218
-30
lines changed

11 files changed

+218
-30
lines changed

charts/postgres-operator/crds/operatorconfigurations.yaml

Lines changed: 99 additions & 11 deletions
Large diffs are not rendered by default.
525 Bytes
Binary file not shown.

charts/postgres-operator/values-crd.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,8 @@ configLogicalBackup:
252252
# path of google cloud service account json file
253253
# logical_backup_google_application_credentials: ""
254254

255+
# prefix for the backup job name
256+
logical_backup_job_prefix: "logical-backup-"
255257
# storage provider - either "s3" or "gcs"
256258
logical_backup_provider: "s3"
257259
# S3 Access Key ID

charts/postgres-operator/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ configLogicalBackup:
242242
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
243243
# path of google cloud service account json file
244244
# logical_backup_google_application_credentials: ""
245+
245246
# prefix for the backup job name
246247
logical_backup_job_prefix: "logical-backup-"
247248
# storage provider - either "s3" or "gcs"

docs/reference/operator_parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ grouped under the `logical_backup` key.
556556
runs `pg_dumpall` on a replica if possible and uploads compressed results to
557557
an S3 bucket under the key `/spilo/pg_cluster_name/cluster_k8s_uuid/logical_backups`.
558558
The default image is the same image built with the Zalando-internal CI
559-
pipeline. Default: "registry.opensource.zalan.do/acid/logical-backup"
559+
pipeline. Default: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
560560

561561
* **logical_backup_google_application_credentials**
562562
Specifies the path of the google cloud service account json file. Default is empty.

manifests/configmap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ data:
6464
# log_s3_bucket: ""
6565
logical_backup_docker_image: "registry.opensource.zalan.do/acid/logical-backup:v1.6.0"
6666
# logical_backup_google_application_credentials: ""
67+
logical_backup_job_prefix: "logical-backup-"
6768
logical_backup_provider: "s3"
6869
# logical_backup_s3_access_key_id: ""
6970
logical_backup_s3_bucket: "my-bucket-url"

0 commit comments

Comments
 (0)