Lookup ceph public ip addr
Add the ability to set up the ip address
of monmap accordingly to the ceph public
network.
Sem-Ver: feature
Change-Id: Ieac0960804d601d0b0da36f62ae59d74aed9765f
diff --git a/roles/ceph_mon/tasks/main.yml b/roles/ceph_mon/tasks/main.yml
index c6d64b5..90cdfc2 100644
--- a/roles/ceph_mon/tasks/main.yml
+++ b/roles/ceph_mon/tasks/main.yml
@@ -19,7 +19,7 @@
- name: set ceph monitor ip address
ansible.builtin.set_fact:
- ceph_mon_ip_address: "{{ ansible_default_ipv4.address }}"
+ ceph_mon_ip_address: "{{ ansible_all_ipv4_addresses | ansible.netcommon.ipaddr(ceph_mon_public_network) | first }}"
- name: generate basic configuration file
community.general.ini_file: