-
Notifications
You must be signed in to change notification settings - Fork 1
/
inventory.sample.yaml
39 lines (39 loc) · 1.09 KB
/
inventory.sample.yaml
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
---
all:
hosts:
validator_mainnet:
ansible_host: 10.0.0.1
node_type: validator
network: mainnet
vfn_ip: 10.0.0.2
vfn_mainnet:
ansible_host: 10.0.0.2
node_type: vfn
network: mainnet
validator_ip: 10.0.0.1
fullnode_mainnet:
ansible_host: 10.0.0.3
node_type: fullnode
network: mainnet
validator_ip: 10.0.0.1
validator_testnet:
ansible_host: 10.0.1.1
node_type: validator
network: testnet
vfn_ip: 10.0.1.2
vfn_testnet:
ansible_host: 10.0.1.2
node_type: vfn
network: testnet
validator_ip: 10.0.1.1
vars:
ansible_user: ubuntu
ansible_port: 22
ansible_ssh_private_key_file: '~/.ssh/id_rsa'
user_dir: '/home/{{ ansible_user }}'
path: '/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin:/usr/local/go/bin:{{ user_dir }}/.cargo/bin'
aptos_directory: '{{ user_dir }}/aptos'
config_directory: '{{ user_dir }}/{{ network }}'
network_varfile: 'group_vars/{{ network }}.yml'
node_type_varfile: 'group_vars/{{ node_type }}.yml'
monitor_ip: '10.0.0.100'