infrastructure/os/config/roles/consul/templates/consul.json.j2

31 lines
729 B
Plaintext
Raw Normal View History

2019-06-01 14:02:49 +00:00
{
"data_dir": "/var/lib/consul",
"bind_addr": "0.0.0.0",
2020-10-22 15:57:02 +00:00
"advertise_addr": "{{ ipv4 }}",
2019-06-01 14:02:49 +00:00
"addresses": {
"dns": "0.0.0.0",
"http": "0.0.0.0"
},
"retry_join": [
{% for selected_host in groups['cluster_nodes']|reject("sameas", ansible_fqdn) %}{# @FIXME: Reject doesn't work #}
2020-10-22 15:57:02 +00:00
"{{ hostvars[selected_host]['ipv4'] }}" {{ "," if not loop.last else "" }}
2019-06-01 14:02:49 +00:00
{% endfor %}
],
"bootstrap_expect": 3,
"server": true,
"ui": true,
"ports": {
"dns": 53
},
"recursors": [
"{{ dns_server }}"
],
2019-06-01 14:02:49 +00:00
"encrypt": "{{ consul_gossip_encrypt }}",
"domain": "2.cluster.deuxfleurs.fr",
"performance": {
"raft_multiplier": 10,
"rpc_hold_timeout": "30s",
"leave_drain_time": "30s"
}
}