forked from polkachu/aptos-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
inventory.sample.yaml
34 lines (34 loc) · 1015 Bytes
/
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
---
all:
hosts:
validator_mainnet:
ansible_host: 10.0.0.1
node_type: validator
network: mainnet
fullnode_ip: 10.0.0.2
fullnode_mainnet:
ansible_host: 10.0.0.2
node_type: fullnode
network: mainnet
validator_ip: 10.0.0.1
validator_testnet:
ansible_host: 10.0.0.3
node_type: validator
network: testnet
fullnode_ip: 10.0.0.4
fullnode_testnet:
ansible_host: 10.0.0.4
node_type: fullnode
network: testnet
validator_ip: 10.0.0.3
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"