Experimental deployment of RocketPool on the Rayonism host

This commit is contained in:
Zahary Karadjov 2021-08-23 21:56:51 +03:00
parent 2a781d70e8
commit ac94e1de9f
No known key found for this signature in database
GPG Key ID: C8936F8A3073D609
4 changed files with 29 additions and 1 deletions

View File

@ -34,3 +34,5 @@ open_ports_list:
- { port: '{{ geth_expo_cont_port }}', ipset: 'metrics.hq' }
- { port: '{{ geth_websocket_port }}', ipset: 'nimbus.pyrmont' }
- { port: '{{ geth_websocket_port }}', ipset: 'nimbus.prater' }
- { port: '{{ geth_websocket_port }}', ipset: 'nimbus.rayonism' }
- { port: '{{ geth_rpc_port }}' , ipset: 'nimbus.rayonism' }

View File

@ -44,3 +44,7 @@ beacon_node_doppelganger_detection: false
beacon_node_dist_validators_enabled: true
beacon_node_dist_validators_start: 0
beacon_node_dist_validators_end: 2400
rocketpool_web3_url: 'http://goerli-01.aws-eu-central-1a.nimbus.geth.wg:8545'
rocketpool_web3_ws_url: 'ws://goerli-01.aws-eu-central-1a.nimbus.geth.wg:8546'

View File

@ -46,7 +46,7 @@
- name: infra-role-beacon-node-linux
src: git@github.com:status-im/infra-role-beacon-node-linux.git
version: c327a454ce113a7d5c1432029aadaaf39c6ca83c
version: 9f5295274066ab707320d6bc2d6fb46e8ff5b520
scm: git
- name: infra-role-beacon-node-windows
@ -59,6 +59,11 @@
version: 1ec52b38e36cd1af939317ea51bbd74984986725
scm: git
- name: infra-role-rocketpool-smart-node
src: git@github.com:status-im/infra-role-rocketpool-smart-node.git
version: 4ff40088a29e1c3a332d82cd915812f7c07e5c96
scm: git
- name: infra-role-winsw
src: git@github.com:status-im/infra-role-winsw.git
version: 44f335715fda2e0ba1b2cb2b815389e05c5ae0b1

17
ansible/rocketpool.yml Normal file
View File

@ -0,0 +1,17 @@
---
- 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 RocketPool node
become: true
hosts:
- nimbus-rayonism-qmerge
roles:
- { role: infra-role-rocketpool-smart-node, tags: rocketpool }