mirror of https://github.com/ceph/ceph-ansible.git
ceph-dashboard: fix mgr dashboard IPv6 fact
15ed9ee
introduced a regression for the mgr dashboard daemon using
IPv6 since the mgr dashboard configuration doesn't support brackets.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1827299
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
pull/5319/head
parent
2b32604577
commit
f1728929cd
|
@ -6,7 +6,7 @@
|
|||
|
||||
- name: get current mgr backend - ipv6
|
||||
set_fact:
|
||||
mgr_server_addr: "{{ hostvars[dashboard_backend]['ansible_all_ipv6_addresses'] | ips_in_ranges(public_network.split(',')) | last | ipwrap }}"
|
||||
mgr_server_addr: "{{ hostvars[dashboard_backend]['ansible_all_ipv6_addresses'] | ips_in_ranges(public_network.split(',')) | last }}"
|
||||
when: ip_version == 'ipv6'
|
||||
|
||||
- name: config the current dashboard backend
|
||||
|
|
Loading…
Reference in New Issue