mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1884 from ceph/mon-container-ip
mon: add support for monitor_address block for containerspull/1888/head
commit
2a1b8a1997
|
@ -29,17 +29,27 @@ ExecStart=/usr/bin/docker run --rm --name ceph-mon-%i --net=host \
|
||||||
--net=host \
|
--net=host \
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
-e IP_VERSION={{ ip_version[-1:] }} \
|
-e IP_VERSION={{ ip_version[-1:] }} \
|
||||||
{% if monitor_address is defined and monitor_address != '0.0.0.0' %}
|
{% if monitor_address_block | length > 0 %}
|
||||||
{% if ip_version == 'ipv4' -%}
|
{% if ip_version == 'ipv4' -%}
|
||||||
-e MON_IP={{ monitor_address }} \
|
-e MON_IP={{ hostvars[inventory_hostname]['ansible_all_' + ip_version + '_addresses'] | ipaddr(monitor_address_block) | first }} \
|
||||||
{% elif ip_version == 'ipv6' -%}
|
{% elif ip_version == 'ipv6' -%}
|
||||||
-e MON_IP=[{{ monitor_address }}] \
|
-e MON_IP=[{{ hostvars[inventory_hostname]['ansible_all_' + ip_version + '_addresses'] | ipaddr(monitor_address_block) | first }}] \
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
{% elif ip_version == 'ipv4' -%}
|
{% elif hostvars[inventory_hostname]['monitor_address'] is defined and hostvars[inventory_hostname]['monitor_address'] != '0.0.0.0' -%}
|
||||||
-e MON_IP={{ hostvars[inventory_hostname]['ansible_' + monitor_interface][ip_version]['address'] }} \
|
{% if ip_version == 'ipv4' -%}
|
||||||
{% elif ip_version =='ipv6' -%}
|
-e MON_IP={{ hostvars[inventory_hostname]['monitor_address'] }} \
|
||||||
-e MON_IP=[{{ hostvars[inventory_hostname]['ansible_' + monitor_interface][ip_version][0]['address'] }}] \
|
{% elif ip_version == 'ipv6' -%}
|
||||||
|
-e MON_IP=[{{ hostvars[inventory_hostname]['monitor_address'] }}] \
|
||||||
|
{% endif -%}
|
||||||
|
{% else -%}
|
||||||
|
{% set interface = ["ansible_",monitor_interface]|join %}
|
||||||
|
{% if ip_version == 'ipv6' -%}
|
||||||
|
-e MON_IP=[{{ hostvars[inventory_hostname][interface][ip_version][0]['address'] }}] \
|
||||||
|
{% elif ip_version == 'ipv4' -%}
|
||||||
|
-e MON_IP={{ hostvars[inventory_hostname][interface][ip_version]['address'] }} \
|
||||||
|
{% endif -%}
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
|
|
||||||
-e CLUSTER={{ cluster }} \
|
-e CLUSTER={{ cluster }} \
|
||||||
-e FSID={{ fsid }} \
|
-e FSID={{ fsid }} \
|
||||||
-e CEPH_PUBLIC_NETWORK={{ public_network }} \
|
-e CEPH_PUBLIC_NETWORK={{ public_network }} \
|
||||||
|
|
Loading…
Reference in New Issue