pvc-ansible/roles/pvc/templates/zookeeper/zoo.cfg.j2

16 lines
301 B
Plaintext
Raw Normal View History

2019-06-09 00:11:06 -04:00
# PVC Zookeeper configuration
# {{ ansible_managed }}
tickTime=1000
initLimit=10
syncLimit=5
dataDir=/var/lib/zookeeper
2019-08-05 13:13:25 -04:00
autopurge.purgeInterval=72
2019-06-09 00:11:06 -04:00
clientPort=2181
{% for node in pvc_nodes if node.is_coordinator %}
2020-04-06 13:45:29 -04:00
server.{{ node.node_id }}={{ node.hostname.split('.')[0] }}:2888:3888
2019-06-09 00:11:06 -04:00
{% endfor %}