Files
openstack-helm/values_overrides/mariadb/remote_backups.yaml
Sergiy Markin 85569c271a Add remote backups failover support
This PS adds a support for a failover location to
upload and retrieve remote backups.

Change-Id: If5a6d8c562409f9fb0d7bbe039b49f0fc154d1a3
2025-06-30 23:14:59 +00:00

39 lines
1009 B
YAML

---
conf:
backup:
enabled: true
remote_backup:
enabled: true
volume:
backup:
enabled: true
endpoints:
identity:
auth:
mariadb:
# Auth URL of null indicates local authentication
# HTK will form the URL unless specified here
auth_url: https://rgw-1.test.local
region_name: RegionOne
username: mariadb-backup-user
password: password
project_name: service
user_domain_name: service
project_domain_name: service
mariadb_failover:
# # Auth URL of null indicates local authentication
# # HTK will form the URL unless specified here
auth_url: https://rgw-2.test.local
region_name: RegionOne
username: mariadb-backup-user
password: password
project_name: service
user_domain_name: service
project_domain_name: service
manifests:
pvc_backup: true
job_ks_user: true
cron_job_mariadb_backup: true
secret_backup_restore: true
...