docs: add instanceSidecarConfiguration info

Signed-off-by: Daniel Chambre <smiyc@pm.me>
This commit is contained in:
Daniel Chambre 2025-06-06 22:02:00 +02:00 committed by Marco Nenciarini
parent e58973cd55
commit bc70dc8cb3
No known key found for this signature in database
GPG Key ID: 589F03F01BA55038

View File

@ -141,6 +141,25 @@ spec:
[...]
```
Due to recent changes to the [boto3](https://github.com/boto/boto3/issues/4392) [Data Integrity Protections for Amazon S3](https://docs.aws.amazon.com/sdkref/latest/guide/feature-dataintegrity.html) implementation, you could hit the [x-amz-content-sha256 Error](https://github.com/cloudnative-pg/plugin-barman-cloud/issues/393).
As a workaround set to following environment to the `ObjectStore`.
```yaml
apiVersion: barmancloud.cnpg.io/v1
kind: ObjectStore
metadata:
name: linode-store
spec:
env:
- name: AWS_REQUEST_CHECKSUM_CALCULATION
value: when_required
- name: AWS_RESPONSE_CHECKSUM_VALIDATION
value: when_required
[...]
```
Example with DigitalOcean Spaces (SFO3, path-style):
```yaml