forked from DASE-iDDS/FDBKeeper-Evaluation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hosts.defaults.ini
30 lines (25 loc) · 906 Bytes
/
hosts.defaults.ini
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
[all:vars]
# Ansible
ansible_python_interpreter=/usr/bin/python3
ansible_ssh_host_key_checking=false
# Prometheus
node_exporter_web_listen_address=0.0.0.0:9031
pushgateway_web_listen_address=0.0.0.0:9030
# Keeper Bench
keeper_bench_conf_dir=/etc/keeper-bench
; bench_disk=/dev/vdb
bench_data_dir=/var/lib/keeper-bench
# Zookeeper
zookeeper_metricsprovider_httpport=9032
zookeeper_mirror=https://mirrors.aliyun.com/apache/zookeeper
# FoundationDB
# Set fdbserver.4500 as coordinator. At least 1 coordinator is required.
fdb_coordinator=False
# Set fdb processes' class.
# See https://apple.github.io/foundationdb/configuration.html#guidelines-process-class-config
fdb_procs=[unset]
# fdb will be init on client host with fdb_init_command
fdb_init_command=configure new single ssd-2
# Misc
internal_ipv4="{{ ansible_default_ipv4.address }}"
public_ipv4="{{ ansible_host | default(inventory_hostname) }}"