|
|
@ -425,10 +425,14 @@ etcd_access_addresses: |- |
|
|
|
{% for item in groups['etcd'] -%} |
|
|
|
https://{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}:2379{% if not loop.last %},{% endif %} |
|
|
|
{%- endfor %} |
|
|
|
etcd_events_access_addresses: |- |
|
|
|
etcd_events_access_addresses_list: |- |
|
|
|
[ |
|
|
|
{% for item in groups['etcd'] -%} |
|
|
|
https://{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}:2381{% if not loop.last %},{% endif %} |
|
|
|
'https://{{ hostvars[item]['access_ip'] | default(hostvars[item]['ip'] | default(hostvars[item]['ansible_default_ipv4']['address'])) }}:2381'{% if not loop.last %},{% endif %} |
|
|
|
{%- endfor %} |
|
|
|
] |
|
|
|
etcd_events_access_addresses: "{{etcd_events_access_addresses_list | join(',')}}" |
|
|
|
etcd_events_access_addresses_semicolon: "{{etcd_events_access_addresses_list | join(';')}}" |
|
|
|
# user should set etcd_member_name in inventory/mycluster/hosts.ini |
|
|
|
etcd_member_name: |- |
|
|
|
{% for host in groups['etcd'] %} |
|
|
|