mirror of
https://github.com/status-im/infra-logos.git
synced 2026-08-27 10:41:10 +00:00
Changes: - Add testnet sequencer and indexer config - Add devnet blockchain deployment settings - Load blockchain keychain file from Vault - Load blockchain deployment file from file - Drop downloading deployment file from URL - Fix file permissions for deployment file Endpoints: - https://explorer.testnet.lez.logos.co/ - https://testnet.lez.logos.co/ Signed-off-by: Jakub Sokołowski <jakub@status.im>
1.7 KiB
1.7 KiB
Description
This repo defines infrastructure for running Logos node fleet.
Dashboards
Current state of fleets: https://fleets.logos.co/
Canaries
Endpoints
LEZ Devnet
LEZ Testnet
Layout
The fleet uses two Terraform workspaces with different layouts:
logos.dev - Development Fleet
Separate hosts per module for independent development and debugging. Each team can break and test their component without affecting others.
delivery- Delivery nodes runningwaku_module(relay, store, filter, lightpush, mix).delivery-db- PostgreSQL used bydeliverynodes for message storage.storage- Storage nodes runningstorage_module(content-addressed storage).blockchain- Blockchain nodes runningliblogos_blockchain_module(cryptarchia consensus).
logos.test - Public Testnet
Combined nodes running all three modules on a single host. Used by external users.
node- Combined nodes runningwaku_module,storage_module, andliblogos_blockchain_module.node-db- PostgreSQL used bynodeinstances for message storage.
Discovery
DNS TXT ENRTree records exist to discover available fleets:
enrtree://<PUBLIC_KEY>@dev.logos.nodes.status.im
enrtree://<PUBLIC_KEY>@test.logos.nodes.status.im
Repo Usage
For how to use this repo read the Infra Repo Usage doc.