How to configure S3 backup storage using values.yaml file or helm chart options?
I do
backup:
storages:
s3-storage:
type: s3
bucket: "my-backup"
region: default
endpointUrl: "https://s3.mystorage.local"
schedule:
- name: "daily-s3"
schedule: "0 3 * * *"
keep: 5
storage: s3-storage
type: full
Get an error:
Error: INSTALLATION FAILED: YAML parse error on pg-db/templates/cluster.yaml: error converting YAML to JSON: yaml: line 70: did not find expected key
How to fix this?