kolla-ansible/releasenotes/notes/bug-2061889-f54e356f43c0fae3.yaml
Michal Arbet e3ce0711ee Fix mariadb backup unable to create history table
The backup user was missing the necessary CREATE
privilege for the mariadb_backup_history table
within the mysql schema, causing backups to fail
when attempting to create this table.

This patch addresses the issue by granting the backup
user the required CREATE permission specifically for
the mariadb_backup_history table. With this change,
the backup process can now complete successfully
without manual intervention for user permissions.

Closes-Bug: #2061889
Change-Id: Ic92c8959972329adbd4b89c521aa87678f25b4e4
2024-10-17 14:37:32 +02:00

7 lines
205 B
YAML

---
fixes:
- |
Fixes mariadb's backup failure due to missing `CREATE` privileges
on the `mariadb_backup_history` table. `LP#2061889
<https://bugs.launchpad.net/kolla-ansible/+bug/2061889>`__