Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/status-im/infra-role-status-go
Ansible role for status-go
https://github.com/status-im/infra-role-status-go
ansible-role infra waku whisper
Last synced: 5 days ago
JSON representation
Ansible role for status-go
- Host: GitHub
- URL: https://github.com/status-im/infra-role-status-go
- Owner: status-im
- Created: 2023-01-11T14:24:16.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T16:44:47.000Z (8 months ago)
- Last Synced: 2024-03-21T17:53:39.912Z (8 months ago)
- Topics: ansible-role, infra, waku, whisper
- Language: Jinja
- Homepage: https://github.com/status-im/status-go
- Size: 35.2 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
This role configures a [`status-go`](https://github.com/status-im/status-go) __history node__ for archiving whisper envelopes.
# Ports
* `30504` - DevP2P port for peer communicaiton (__public__)
* `443` - Alternative peer port for avoiding firewalls (__public__)
* `8545` - HTTP JSON RPC port for administration (__private__)
* `9305` - Prometheus Metrics port (__private__)
* `52525` - Go Performance Profiling port (__private__)# Configuration
The most important settings would be:
```yaml
status_go_node_cont_tag: 'deploy-test'
status_go_waku_v1_enabled: true
status_go_waku_v2_enabled: false
status_go_history_enabled: false
status_go_log_level: 'DEBUG'
```
If you want to provide specific node key you can use:
```
status_go_node_key: 'abc321...'
```# Usage
The containers are created using [Docker Compose](https://docs.docker.com/compose/) and consist of the `status-go` node and PostgreSQL database:
```
[email protected]:~ % docker ps
CONTAINER ID NAMES IMAGE CREATED STATUS
dca9b2a708c2 status-go-node statusteam/status-go:deploy-test 2 minutes ago Up 4 seconds
bfed6063abe9 status-go-db postgres:9.6-alpine 2 minutes ago Up 2 minutes
```
You can manage the containers using `docker compose`. To re-create them use:
```
[email protected]:/docker/status-go % docker compose --compatibility up --force-recreate -d
Recreating status-go-db ... done
Recreating status-go-node ... done
```# Backups
Backups of the PostgreSQL DB are done using [systemd timers](https://www.freedesktop.org/software/systemd/man/systemd.timer.html) and can be viewed using `systemctl`:
```
[email protected]:~ % sudo systemctl -a list-timers 'dump-status-go*'
NEXT LEFT LAST PASSED UNIT ACTIVATES
Wed 2020-04-01 00:00:00 UTC 10h left n/a n/a dump-status-go-db.timer dump-status-go-db.service
```
And ran manually:
```
[email protected]:~ % sudo systemctl start dump-status-go-db
```
And check logs:
```
[email protected]:~ % sudo journalctl -o cat -u dump-status-go-db
Starting Dumping mailserver PostgreSQL database...
Created: /var/tmp/backups/mailsrv/status_go_db_dump_20200331130625.sql
Started Dumping mailserver PostgreSQL database.
```