2021-08-23 21:56:51 +03:00
|
|
|
---
|
|
|
|
- name: Verify Ansible versions
|
|
|
|
hosts: all
|
|
|
|
tags: always
|
|
|
|
become: false
|
|
|
|
run_once: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
2024-06-13 17:19:32 +02:00
|
|
|
- local_action: command ./roles.py --check
|
2021-08-23 21:56:51 +03:00
|
|
|
changed_when: false
|
|
|
|
|
2021-10-01 14:31:41 +02:00
|
|
|
- name: Configure RocketPool & Eth1 nodes
|
2021-08-23 21:56:51 +03:00
|
|
|
become: true
|
|
|
|
hosts:
|
2021-08-26 20:47:32 +03:00
|
|
|
- nimbus-eth1-metal
|
2021-08-23 21:56:51 +03:00
|
|
|
roles:
|
2024-10-10 15:09:01 +02:00
|
|
|
- { role: infra-role-open-ports, tags: open-ports }
|
2021-10-26 13:08:29 +02:00
|
|
|
- { role: infra-role-nimbus-eth1, tags: nimbus-eth1 }
|
2024-03-10 13:26:14 +01:00
|
|
|
- { role: infra-role-rocketpool, tags: rocketpool }
|
2025-01-23 17:40:40 +01:00
|
|
|
- { role: infra-role-wazuh-agent, tags: wazuh-agent }
|