mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-16 00:35:07 +00:00
20 lines
432 B
YAML
20 lines
432 B
YAML
|
---
|
||
|
- 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
|
||
|
|
||
|
- name: Configure Nimbus Fluffy nodes
|
||
|
become: true
|
||
|
hosts:
|
||
|
- nimbus.fluffy
|
||
|
tasks:
|
||
|
- include_role: name=infra-role-nimbus-fluffy
|
||
|
tags: [ beacon-node, infra-role-nimbus-fluffy ]
|
||
|
with_sequence: start=1 end=32
|