Fix IP resolve check for RabbitMQ on AIO
On AIO installation we cannot assume that the public IP address will be the first entry in "getent ahostsv4" result, because it may be also a localhost address. To make this check positive in AIO, we should look for the public IP in the whole output. Change-Id: I1da7b95d7f00c7f87ff68ead46bf55fdea812599 Closes-Bug: 1564564
This commit is contained in:
parent
834b5eff5c
commit
5aa2dcce30
@ -7,7 +7,7 @@
|
||||
|
||||
- fail: msg="Hostname has to resolve to IP address of api_interface"
|
||||
with_items: rabbitmq_hostnames.results
|
||||
when: "{% set ip=item.stdout.split(' ')[0] %}'{{ hostvars[item['item']]['ansible_' + hostvars[item['item']]['api_interface']]['ipv4']['address'] }}' != '{{ ip }}'"
|
||||
when: "'{{ hostvars[item['item']]['ansible_' + hostvars[item['item']]['api_interface']]['ipv4']['address'] }}' not in '{{ item.stdout }}'"
|
||||
|
||||
- name: Creating rabbitmq volume
|
||||
kolla_docker:
|
||||
|
Loading…
x
Reference in New Issue
Block a user