mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-13 07:14:07 +00:00
Jakub Sokołowski
69469913fb
- https://github.com/status-im/infra-nimbus/issues/88 - https://config.kiln.themerge.dev/el/bootnodes - https://config.kiln.themerge.dev/el/genesis/geth.json - https://kiln.themerge.dev/ Signed-off-by: Jakub Sokołowski <jakub@status.im>
23 lines
486 B
YAML
23 lines
486 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: 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 ]
|
|
with_sequence: start=1 end=4
|
|
loop_control:
|
|
loop_var: 'idx'
|