infra-nimbus/ansible/fluffy.yml
Jakub Sokołowski a303fc92bd
fluffy: add extra 32 addreses to each host
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>
2024-07-04 16:49:02 +02:00

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