mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-11 21:23:12 +01:00
This patch allows the plugin trigger a rolling deployment on existing clusters, enabling seamless migration between the in-tree barman cloud support and the plugin. Signed-off-by: Leonardo Cecchi <leonardo.cecchi@enterprisedb.com>
32 lines
646 B
YAML
32 lines
646 B
YAML
apiVersion: postgresql.cnpg.io/v1
|
|
kind: Cluster
|
|
metadata:
|
|
name: cluster-example
|
|
spec:
|
|
instances: 3
|
|
|
|
backup:
|
|
barmanObjectStore:
|
|
endpointCA:
|
|
name: minio-server-tls
|
|
key: tls.crt
|
|
destinationPath: s3://backups/
|
|
endpointURL: https://minio:9000
|
|
s3Credentials:
|
|
accessKeyId:
|
|
name: minio
|
|
key: ACCESS_KEY_ID
|
|
secretAccessKey:
|
|
name: minio
|
|
key: ACCESS_SECRET_KEY
|
|
wal:
|
|
compression: gzip
|
|
data:
|
|
additionalCommandArgs:
|
|
- "--min-chunk-size=5MB"
|
|
- "--read-timeout=60"
|
|
- "-vv"
|
|
|
|
storage:
|
|
size: 1Gi
|