kolla-ansible/releasenotes/notes/bug-2058644-1db8786303234787.yaml
Mark Goddard 667d153ef1 Use the running MariaDB server image for backups
If the container image used by Mariabackup is different than the
one used by MariaDB server, it's possible that mariabackup and mariadb
are incompatible. This may cause backup operations to fail.

This change queries the running MariaDB server container's image and
uses it when taking a backup. If MariaDB server isn't running on the
host it falls back to the image defined in configuration.

The separate mariabackup_image, mariabackup_tag and
mariabackup_image_full variables are no longer required and have been
removed.

Closes-Bug: #2058644
Change-Id: I45f3f90ec1973dae92131ea16a7b248ab7a8ae69
2024-05-16 11:22:36 +01:00

16 lines
488 B
YAML

---
upgrade:
- |
MariaDB backup now uses the same image as the running MariaDB server. The
following variables relating to MariaDB backups are no longer used and have
been removed:
* ``mariabackup_image``
* ``mariabackup_tag``
* ``mariabackup_image_full``
fixes:
- |
Modifies the MariaDB procedure to use the same container image as the
running MariaDB server container. This should prevent compatibility issues
that may cause the backup to fail.