forked from Tessellated-io/skip-playbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
evmos.yml
55 lines (42 loc) · 1.86 KB
/
evmos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Apply Skip to an Evmos node
- hosts: evmos-*
gather_facts: false
become: false
vars:
####################################################################################
# Variables to customize for your installation
####################################################################################
# Daemon name. This will be restarted at the end of the playbook.
# Use `evmosd` if not using Cosmosvisor, or `cosmosvisor` if you are.
- daemon: evmosd
# daemon: cosmosvisor
# Personal peer IDs if needed.
- personal_peer_ids: ''
####################################################################################
# Other variables - You likely don't need to modify anything below this line.
####################################################################################
#-----------------------------------------
# Configuration for git checkout
#-----------------------------------------
# Repositority to clone
- repo: https://github.com/evmos/evmos
# Version to checkout (tag, commit, or branch)
- node_version: v10.0.0
# Where to clone the code to. This folder is automatically cleaned up.
- git_checkout_dir: evmos-source
#-----------------------------------------
# Configuration for Skip
#-----------------------------------------
# Version of Skip's MEV Tendermint to substitute into the node.
- skip_version: v0.34.24-mev.14
# Skip sentinel peer
- sentinel_peer_string: "c0a2990e2a5dad7f4ace044d2f936de6891c6f0a@evmos_9001-2-sentinel.skip.money:26656"
# Skip sentinel RPC
- sentinel_rpc_string: "http://evmos_9001-2-api.skip.money"
#-----------------------------------------
# Configuration for Node
#-----------------------------------------
# Data folder for the node
- folder: '.evmosd'
roles:
- apply-skip