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

16 lines
301 B
Plaintext
Raw Normal View History

2023-09-01 15:42:19 -04:00
# PVC Zookeeper configuration
# {{ ansible_managed }}
tickTime=1000
initLimit=10
syncLimit=5
dataDir=/var/lib/zookeeper
2023-09-01 15:42:21 -04:00
autopurge.purgeInterval=72
2023-09-01 15:42:19 -04:00
clientPort=2181
{% for node in pvc_nodes if node.is_coordinator %}
2023-09-01 15:42:23 -04:00
server.{{ node.node_id }}={{ node.hostname.split('.')[0] }}:2888:3888
2023-09-01 15:42:19 -04:00
{% endfor %}