mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-21 02:59:52 +00:00
Jakub Sokołowski
a303fc92bd
Which will then be attached to individual fluffy nodes: https://github.com/status-im/infra-nimbus/issues/186 Signed-off-by: Jakub Sokołowski <jakub@status.im>
27 lines
740 B
YAML
27 lines
740 B
YAML
---
|
|
- name: Verify Ansible versions
|
|
hosts: all
|
|
tags: always
|
|
become: false
|
|
run_once: true
|
|
gather_facts: false
|
|
tasks:
|
|
- local_action: command ./roles.py --check
|
|
changed_when: false
|
|
|
|
- name: Configure Nimbus Fluffy nodes
|
|
become: true
|
|
hosts:
|
|
- nimbus.fluffy
|
|
roles:
|
|
# Extra 32 IPv4 addresses for each of the nodes on the host.
|
|
- { role: update-netplan, tags: update-netplan }
|
|
- { role: infra-role-open-ports, tags: open-ports }
|
|
- { role: infra-role-smart-metrics, tags: smart-metrics }
|
|
tasks:
|
|
- include_role: name=infra-role-nimbus-fluffy
|
|
tags: [ beacon-node, infra-role-nimbus-fluffy ]
|
|
with_sequence: start=1 end=32
|
|
loop_control:
|
|
loop_var: index
|