Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
PolkachuIntern committed Sep 9, 2022
1 parent be8f74c commit 499a7e6
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 46 deletions.
116 changes: 72 additions & 44 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,50 +87,78 @@ ansible-playbook main.yml -e "target=HOST_NAME"
ansible-playbook support_seed.yml -e "target=umee_seed seed=190c4496f3b46d339306182fe6a507d5487eacb5@65.108.131.174:36656"
```

## Supported Mainnet

- Agoric
- Akash
- Asset Mantle
- Axelar
- Bitcanna
- Cerberus
- Certik
- Chihuahua
- Comdex
- Evmos
- Fetch
- Galaxy (galaxyd is the name for this repo because galaxy is a reserved word in Ansible)
- Gravity Bridge
- Juno
- Kava
- KiChain
- Konstellation
- Meme
- Osmosis
- Sifchain
- Sommelier
- Stargaze
- Umee

# Supported Testnets

- Archway
- Axelar
- Celestia
- Comdex
- Defund
- Deweb
- Evmos
- Gitopia
- Juno
- Kichain
- Kujira
- Kyve
- Quicksilver
- Sei
- Terra
- Umee
## Supported Networks

| Network | Mainnet | Testnet |
| ------------- | ------- | ------- |
| Agoric | Yes | Yes |
| Akash | Yes | |
| Althea | | Yes |
| Archaway | | Yes |
| Assetmantle | Yes | |
| Axelar | Yes | Yes |
| Bitcanna | Yes | |
| Bitsong | Yes | |
| Canto | Yes | |
| Celestia | | Yes |
| Cerberus | Yes | Yes |
| Certik | Yes | |
| Cheqd | Yes | |
| Chihuahua | Yes | Yes |
| Comdex | Yes | Yes |
| Cosmos | Yes | |
| Craft | | Yes |
| Crescent | Yes | |
| Cudos | Yes | |
| Defund | | Yes |
| Desmos | Yes | |
| Deweb | | Yes |
| DIG | Yes | |
| Echelon | Yes | |
| Evmos | Yes | Yes |
| Fetch | Yes | |
| Firmachain | Yes | |
| Galaxy | Yes | |
| Gitopia | | Yes |
| Gravity | Yes | |
| IDEP | Yes | |
| Impacthub | Yes | |
| Injective | Yes | |
| Juno | Yes | Yes |
| Kava | Yes | |
| Kichain | Yes | Yes |
| Konstellation | Yes | |
| Kujira | Yes | Yes |
| Kyve | | Yes |
| Lum | Yes | |
| Meme | Yes | Yes |
| Nym | Yes | |
| Odin | Yes | |
| Omniflix | Yes | |
| Osmosis | Yes | |
| Paloma | | Yes |
| Passage | Yes | |
| Quicksilver | | Yes |
| Sifchain | Yes | |
| Sommelier | Yes | |
| Sei | | Yes |
| Source | | Yes |
| Stargaze | Yes | Yes |
| Stride | Yes | Yes |
| Teritori | | Yes |
| Terra2 | Yes | Yes |
| Umee | Yes | Yes |
| Vidulum | Yes | |

## V1 to V2 migration [OPTIONAL]

In V1, the custom port prefix is 2 digits. However, this hobby project has evolved into a more ambitious one and we have run out of the prefixes. Therefore, V2 introduces a breaking change of the 3-digit custom port prefixes.

If you have a node running based on V1 port prefix system, you do not need to do anything. However, if you are as OCD as Polkachu, you might want to migrate all the previous nodes to comply with the new system. Here is a playbook to manage the migration. You still need to close the old ports that are not longer in use, but this playbook should take care of the rest.

```bash
ansible-playbook support_config_update.yml -e "target=juno_main"
```

## Known Issue

Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions inventory.sample
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ relayer_1 ansible_host=10.0.0.3
ansible_user=ubuntu
ansible_port=22
ansible_ssh_private_key_file="~/.ssh/id_rsa"
var_file="group_vars/{{ network }}.yml"
var_file="group_vars/mainnets/{{ group_names[0] }}.yml"
user_dir="/home/{{ansible_user}}"
path="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/local/go/bin:{{ user_dir }}/go/bin"
node_exporter=true
Expand All @@ -22,4 +22,3 @@ log_monitor=http://10.0.0.100:3100
node_name="BRAND-{{ network }}-{{ type }}"
log_name="PREFIX_{{ network }}_{{ type }}"
snapshot_endpoint='http://10.0.0.2000'
snapshot_profile='profile'
20 changes: 20 additions & 0 deletions inventory_tetsnet.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[testnet_host_1]
testnet_axelar ansible_host=10.0.0.1 type=test prepare=false
testnet_comdex ansible_host=10.0.0.1 type=test prepare=false

[testnet_host_1]
testnet_chihuahua ansible_host=10.0.0.2 type=test prepare=false
testnet_cerberus ansible_host=10.0.0.2 type=test prepare=false

[all:vars]
ansible_user=ubuntu
ansible_port=22
ansible_ssh_private_key_file="~/.ssh/id_rsa"
var_file="group_vars/testnets/{{ target }}.yml"
user_dir="/home/{{ansible_user}}"
path="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/local/go/bin:{{ user_dir }}/go/bin"
node_exporter=true
promtail=true
log_monitor=http://10.0.0.100:3100
node_name="BRAND-{{ network }}-{{ type }}"
log_name="PREFIX_{{ network }}_{{ type }}"

0 comments on commit 499a7e6

Please sign in to comment.