Merge "Fix mariadb role when used with check mode"

This commit is contained in:
Zuul 2024-02-15 14:13:18 +00:00 committed by Gerrit Code Review
commit 0dac9eb93d
2 changed files with 7 additions and 0 deletions

View File

@ -23,6 +23,7 @@
timeout: 60
search_regex: "MariaDB"
register: check_mariadb_port
check_mode: false
until: check_mariadb_port is success
retries: 10
delay: 6
@ -41,6 +42,7 @@
retries: 10
delay: 6
no_log: true
check_mode: false
when:
# NOTE(yoctozepto): we don't want to wait for new nodes to fully sync
# with an existing cluster as this could take time

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes mariadb role deployment when using Ansible check mode.
`LP#2052501 <https://bugs.launchpad.net/kolla-ansible/+bug/2052501>`__