nimbus.holesky: re-add missing playbook steps
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
1f4483748b
commit
0970c10b89
|
@ -18,13 +18,56 @@
|
|||
- nimbus-holesky-neth
|
||||
vars_files: layout/holesky.yml
|
||||
roles:
|
||||
- role: update-netplan
|
||||
tags: update-netplan
|
||||
when: ansible_system == 'Linux'
|
||||
- { role: update-netplan, tags: update-netplan, when: ansible_system == 'Linux' }
|
||||
- { role: infra-role-swap-file, tags: [ swap-file ] }
|
||||
- { role: infra-role-open-ports, tags: [ open-ports ] }
|
||||
- { role: redirect-ports, tags: [ redirect-ports ] }
|
||||
tasks:
|
||||
- include_role: name=infra-role-beacon-node-linux
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
- include_role: name=infra-role-validator-client
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
when: validator_client_service_enabled
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
|
||||
- name: Deploy Holesky Geth Nodes
|
||||
become: true
|
||||
serial: '{{ serial|default(1) }}'
|
||||
hosts: nimbus-holesky-geth
|
||||
vars_files: layout/holesky.yml
|
||||
tasks:
|
||||
- include_role: name=infra-role-geth
|
||||
when: node.el == "geth"
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
|
||||
- include_role: name=infra-role-geth-exporter
|
||||
when: node.el == "geth"
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
|
||||
- name: Deploy Holesky Erigon Nodes
|
||||
become: true
|
||||
serial: '{{ serial|default(1) }}'
|
||||
hosts: nimbus-holesky-erigon
|
||||
vars_files: layout/holesky.yml
|
||||
tasks:
|
||||
- include_role: name=infra-role-erigon
|
||||
when: node.el == "erigon"
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
|
||||
- name: Deploy Holesky Nethermind Nodes
|
||||
become: true
|
||||
serial: '{{ serial|default(1) }}'
|
||||
hosts: nimbus-holesky-neth
|
||||
vars_files: layout/holesky.yml
|
||||
tasks:
|
||||
- include_role: name=infra-role-nethermind
|
||||
when: node.el == "nethermind"
|
||||
with_items: '{{ nodes_layout[hostname] }}'
|
||||
loop_control: { loop_var: node, index_var: idx }
|
||||
|
||||
- name: Deploy Holesky MacOS Beacon Nodes
|
||||
become: true
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
- name: infra-role-beacon-node-linux
|
||||
src: git@github.com:status-im/infra-role-beacon-node-linux.git
|
||||
version: 91c2fe1afa845fbae87d70bccd09dc098db6dc04
|
||||
version: ed1c7b7f3edab0c2f17f97c92514ddef18c80e5d
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-windows
|
||||
|
|
Loading…
Reference in New Issue