Use database_address and database_port var for mariadb check

This is how services reach mariadb; verify it that way.

Closes-Bug: #1823005
Change-Id: I9924ad050118b8a853e2309654a089f65178cd77
(cherry picked from commit 524f969bfc)
This commit is contained in:
Jim Rollenhagen 2019-04-02 13:10:21 -04:00
parent c54b0c20d5
commit a47870032d
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
---
- 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;'"
command: "docker exec mariadb mysql -h {{ database_address }} -P {{ database_port }} -u haproxy -e 'show databases;'"
register: result
until: result is success
changed_when: False