2021-04-19 18:21:42 +00:00
|
|
|
---
|
2021-10-12 11:52:13 +00:00
|
|
|
- include_tasks: consul/posix.yml
|
|
|
|
when: ansible_system in ['Linux', 'Darwin']
|
2022-06-03 10:01:44 +00:00
|
|
|
loop: '{{ geth_node_api_consul_names }}'
|
|
|
|
loop_control:
|
|
|
|
loop_var: 'service_name'
|
2021-05-19 09:54:46 +00:00
|
|
|
|
2021-10-12 11:52:13 +00:00
|
|
|
- include_tasks: consul/windows.yml
|
|
|
|
when: ansible_system == 'Win32NT'
|
2022-06-03 10:01:44 +00:00
|
|
|
loop: '{{ geth_node_api_consul_names }}'
|
|
|
|
loop_control:
|
|
|
|
loop_var: 'service_name'
|
2021-12-02 12:10:06 +00:00
|
|
|
|
2021-04-19 18:21:42 +00:00
|
|
|
- name: Extract Goerli Geth WebSocket URL
|
|
|
|
set_fact:
|
2021-05-19 09:54:46 +00:00
|
|
|
# our nodes first (will be used by default) then an infura node
|
2021-12-03 18:40:52 +00:00
|
|
|
beacon_node_web3_urls_all: "{{ geth_api_addresses + [ selected_infura_url ] }}"
|