Fix kolla-ansible genconfig for mariadb

For the genconfig command, master_host will not be defined as it is
defined dynamically in bootstrap.yml.

Co-Authored-By: Stig Telfer <stig@stackhpc.com>
Change-Id: Ib988c8e2de475e9b973fed2f7f752cb2500953c3
Closes-Bug: #1707856
(cherry picked from commit de56340f86)
This commit is contained in:
Mark Goddard 2017-09-18 17:16:52 +01:00 committed by Eduardo Gonzalez
parent 5089711194
commit d0fa51ca2c
1 changed files with 4 additions and 0 deletions

View File

@ -53,6 +53,7 @@
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- inventory_hostname != master_host
- inventory_hostname in groups[service.group]
- service.enabled | bool
@ -78,6 +79,7 @@
retries: 10
delay: 6
when:
- action != "config"
- inventory_hostname != master_host
- name: restart master mariadb
@ -92,6 +94,7 @@
image: "{{ service.image }}"
volumes: "{{ service.volumes }}"
when:
- action != "config"
- inventory_hostname == master_host
- inventory_hostname in groups[service.group]
- service.enabled | bool
@ -117,4 +120,5 @@
retries: 10
delay: 6
when:
- action != "config"
- inventory_hostname == master_host