portal-bridge: move config to separate vars file

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-07-02 10:39:42 +02:00
parent 17d767c59d
commit a991898990
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
3 changed files with 12 additions and 11 deletions

View File

@ -25,6 +25,7 @@
- name: Configure Nimbus Portal Bridge
become: true
vars_files: portal-bridge.yml
hosts:
- metal-01.ih-eu-mda1.nimbus.fluffy
roles:

View File

@ -2,14 +2,3 @@
bootstrap__extra_volume_bind_paths:
DATA_VOLUME1: ['/data']
DATA_VOLUME2: ['/era']
# Portal Bridge
portal_bridge_service_name: 'nimbus-portal-bridge'
portal_bridge_rpc_address: '127.0.0.1'
portal_bridge_rpc_port: 8545
portal_bridge_command: 'history'
portal_bridge_latest: true
portal_bridge_backfill: true
portal_bridge_audit: true
portal_bridge_era1_dir: '/era'
portal_bridge_web3_url: 'https://linux-02.ih-eu-mda1.nimbus.mainnet.wg:8545'

View File

@ -0,0 +1,11 @@
---
# Portal Bridge
portal_bridge_service_name: 'nimbus-portal-bridge'
portal_bridge_rpc_address: '127.0.0.1'
portal_bridge_rpc_port: 8545
portal_bridge_command: 'history'
portal_bridge_latest: true
portal_bridge_backfill: true
portal_bridge_audit: true
portal_bridge_era1_dir: '/era'
portal_bridge_web3_url: 'https://linux-02.ih-eu-mda1.nimbus.mainnet.wg:8545'