Merge "external/internal vip: use proper ip comparison"
This commit is contained in:
commit
dd4aa966a6
@ -56,7 +56,7 @@ kolla_base_distro: "rocky"
|
||||
kolla_internal_vip_address: "{{ kolla_internal_address | default('') }}"
|
||||
kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
|
||||
kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
|
||||
kolla_same_external_internal_vip: "{{ kolla_external_vip_address == kolla_internal_vip_address }}"
|
||||
kolla_same_external_internal_vip: "{{ kolla_external_vip_address | ansible.utils.ipaddr('address') == kolla_internal_vip_address | ansible.utils.ipaddr('address') }}"
|
||||
kolla_external_fqdn: "{{ kolla_internal_fqdn if kolla_same_external_internal_vip | bool else kolla_external_vip_address }}"
|
||||
|
||||
kolla_dev_repos_directory: "/opt/stack/"
|
||||
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixes a bug where the IP address comparison was not done properly
|
||||
for the variable ``kolla_same_external_internal_vip``.
|
||||
Fix the comparison to use the ``ipaddr`` filter instead.
|
||||
For details see `LP#2076889 <https://bugs.launchpad.net/kolla/+bug/2076889>`__.
|
Loading…
Reference in New Issue
Block a user