mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-21 19:20:46 +00:00
c07788fa76
Referenced issue: https://github.com/status-im/infra-misc/issues/301 Signed-off-by: markoburcul <marko@status.im>
20 lines
475 B
YAML
20 lines
475 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 RocketPool & Eth1 nodes
|
|
become: true
|
|
hosts:
|
|
- nimbus-eth1-metal
|
|
roles:
|
|
- { role: infra-role-open-ports, tags: open-ports }
|
|
- { role: infra-role-nimbus-eth1, tags: nimbus-eth1 }
|
|
- { role: infra-role-rocketpool, tags: rocketpool }
|