471985dc2c
With the more recent versions of ansible, we should now use "is" instead of the "|" This should update it. Change-Id: I6fba56fca182349972e8b0ee5452b37aa4090e0c
9 lines
279 B
YAML
9 lines
279 B
YAML
---
|
|
- name: Waiting for MariaDB service to be ready through VIP
|
|
command: "docker exec mariadb mysql -h {{ kolla_internal_fqdn }} -P {{ mariadb_port }} -u haproxy -e 'show databases;'"
|
|
register: result
|
|
until: result is success
|
|
changed_when: False
|
|
retries: 6
|
|
delay: 10
|