Skip to content

Commit 499a7e6

Browse files
update readme
1 parent be8f74c commit 499a7e6

File tree

4 files changed

+93
-46
lines changed

4 files changed

+93
-46
lines changed

README.md

Lines changed: 72 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -87,50 +87,78 @@ ansible-playbook main.yml -e "target=HOST_NAME"
8787
ansible-playbook support_seed.yml -e "target=umee_seed [email protected]:36656"
8888
```
8989

90-
## Supported Mainnet
91-
92-
- Agoric
93-
- Akash
94-
- Asset Mantle
95-
- Axelar
96-
- Bitcanna
97-
- Cerberus
98-
- Certik
99-
- Chihuahua
100-
- Comdex
101-
- Evmos
102-
- Fetch
103-
- Galaxy (galaxyd is the name for this repo because galaxy is a reserved word in Ansible)
104-
- Gravity Bridge
105-
- Juno
106-
- Kava
107-
- KiChain
108-
- Konstellation
109-
- Meme
110-
- Osmosis
111-
- Sifchain
112-
- Sommelier
113-
- Stargaze
114-
- Umee
115-
116-
# Supported Testnets
117-
118-
- Archway
119-
- Axelar
120-
- Celestia
121-
- Comdex
122-
- Defund
123-
- Deweb
124-
- Evmos
125-
- Gitopia
126-
- Juno
127-
- Kichain
128-
- Kujira
129-
- Kyve
130-
- Quicksilver
131-
- Sei
132-
- Terra
133-
- Umee
90+
## Supported Networks
91+
92+
| Network | Mainnet | Testnet |
93+
| ------------- | ------- | ------- |
94+
| Agoric | Yes | Yes |
95+
| Akash | Yes | |
96+
| Althea | | Yes |
97+
| Archaway | | Yes |
98+
| Assetmantle | Yes | |
99+
| Axelar | Yes | Yes |
100+
| Bitcanna | Yes | |
101+
| Bitsong | Yes | |
102+
| Canto | Yes | |
103+
| Celestia | | Yes |
104+
| Cerberus | Yes | Yes |
105+
| Certik | Yes | |
106+
| Cheqd | Yes | |
107+
| Chihuahua | Yes | Yes |
108+
| Comdex | Yes | Yes |
109+
| Cosmos | Yes | |
110+
| Craft | | Yes |
111+
| Crescent | Yes | |
112+
| Cudos | Yes | |
113+
| Defund | | Yes |
114+
| Desmos | Yes | |
115+
| Deweb | | Yes |
116+
| DIG | Yes | |
117+
| Echelon | Yes | |
118+
| Evmos | Yes | Yes |
119+
| Fetch | Yes | |
120+
| Firmachain | Yes | |
121+
| Galaxy | Yes | |
122+
| Gitopia | | Yes |
123+
| Gravity | Yes | |
124+
| IDEP | Yes | |
125+
| Impacthub | Yes | |
126+
| Injective | Yes | |
127+
| Juno | Yes | Yes |
128+
| Kava | Yes | |
129+
| Kichain | Yes | Yes |
130+
| Konstellation | Yes | |
131+
| Kujira | Yes | Yes |
132+
| Kyve | | Yes |
133+
| Lum | Yes | |
134+
| Meme | Yes | Yes |
135+
| Nym | Yes | |
136+
| Odin | Yes | |
137+
| Omniflix | Yes | |
138+
| Osmosis | Yes | |
139+
| Paloma | | Yes |
140+
| Passage | Yes | |
141+
| Quicksilver | | Yes |
142+
| Sifchain | Yes | |
143+
| Sommelier | Yes | |
144+
| Sei | | Yes |
145+
| Source | | Yes |
146+
| Stargaze | Yes | Yes |
147+
| Stride | Yes | Yes |
148+
| Teritori | | Yes |
149+
| Terra2 | Yes | Yes |
150+
| Umee | Yes | Yes |
151+
| Vidulum | Yes | |
152+
153+
## V1 to V2 migration [OPTIONAL]
154+
155+
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.
156+
157+
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.
158+
159+
```bash
160+
ansible-playbook support_config_update.yml -e "target=juno_main"
161+
```
134162

135163
## Known Issue
136164

File renamed without changes.

inventory.sample

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ relayer_1 ansible_host=10.0.0.3
1313
ansible_user=ubuntu
1414
ansible_port=22
1515
ansible_ssh_private_key_file="~/.ssh/id_rsa"
16-
var_file="group_vars/{{ network }}.yml"
16+
var_file="group_vars/mainnets/{{ group_names[0] }}.yml"
1717
user_dir="/home/{{ansible_user}}"
1818
path="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/local/go/bin:{{ user_dir }}/go/bin"
1919
node_exporter=true
@@ -22,4 +22,3 @@ log_monitor=http://10.0.0.100:3100
2222
node_name="BRAND-{{ network }}-{{ type }}"
2323
log_name="PREFIX_{{ network }}_{{ type }}"
2424
snapshot_endpoint='http://10.0.0.2000'
25-
snapshot_profile='profile'

inventory_tetsnet.sample

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[testnet_host_1]
2+
testnet_axelar ansible_host=10.0.0.1 type=test prepare=false
3+
testnet_comdex ansible_host=10.0.0.1 type=test prepare=false
4+
5+
[testnet_host_1]
6+
testnet_chihuahua ansible_host=10.0.0.2 type=test prepare=false
7+
testnet_cerberus ansible_host=10.0.0.2 type=test prepare=false
8+
9+
[all:vars]
10+
ansible_user=ubuntu
11+
ansible_port=22
12+
ansible_ssh_private_key_file="~/.ssh/id_rsa"
13+
var_file="group_vars/testnets/{{ target }}.yml"
14+
user_dir="/home/{{ansible_user}}"
15+
path="/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/local/go/bin:{{ user_dir }}/go/bin"
16+
node_exporter=true
17+
promtail=true
18+
log_monitor=http://10.0.0.100:3100
19+
node_name="BRAND-{{ network }}-{{ type }}"
20+
log_name="PREFIX_{{ network }}_{{ type }}"

0 commit comments

Comments
 (0)