Merge "Fix kolla-ansible genconfig for mariadb"

This commit is contained in:
Jenkins 2017-09-25 12:37:33 +00:00 committed by Gerrit Code Review
commit 2eafc4ca27

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