2022-03-11 11:12:13 +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
|
|
|
|
|
|
|
|
- name: Deploy Kiln Testnet nodes
|
|
|
|
become: true
|
|
|
|
serial: '{{ serial|default(1) }}'
|
|
|
|
hosts:
|
|
|
|
- nimbus-kiln-metal
|
|
|
|
tasks:
|
|
|
|
- include_role: name=infra-role-geth
|
|
|
|
tags: [ geth, infra-role-geth ]
|
2022-03-11 14:39:37 +00:00
|
|
|
with_items: '{{ nodes_layout[hostname] }}'
|
2022-03-11 11:12:13 +00:00
|
|
|
loop_control:
|
2022-03-11 14:39:37 +00:00
|
|
|
loop_var: node
|
|
|
|
index_var: idx
|
|
|
|
- include_role: name=infra-role-beacon-node-linux
|
|
|
|
tags: [ beacon-node, infra-role-beacon-node-linux ]
|
|
|
|
with_items: '{{ nodes_layout[hostname] }}'
|
|
|
|
loop_control:
|
|
|
|
loop_var: node
|
|
|
|
index_var: idx
|