2021-08-23 18:56:51 +00:00
|
|
|
---
|
|
|
|
- name: Verify Ansible versions
|
|
|
|
hosts: all
|
|
|
|
tags: always
|
|
|
|
become: false
|
|
|
|
run_once: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- local_action: command ./versioncheck.py
|
|
|
|
changed_when: false
|
|
|
|
|
2021-10-01 12:31:41 +00:00
|
|
|
- name: Configure RocketPool & Eth1 nodes
|
2021-08-23 18:56:51 +00:00
|
|
|
become: true
|
|
|
|
hosts:
|
2021-08-26 17:47:32 +00:00
|
|
|
- nimbus-eth1-metal
|
2021-08-23 18:56:51 +00:00
|
|
|
roles:
|
2021-10-26 11:08:29 +00:00
|
|
|
- { role: infra-role-rocketpool, tags: rocketpool }
|
|
|
|
- { role: infra-role-nimbus-eth1, tags: nimbus-eth1 }
|