Update to 2022-08-01 22:00

This commit is contained in:
Daniel Berteaud 2022-08-01 22:00:30 +02:00
parent 8179fd8b6b
commit a940a671f5
2 changed files with 9 additions and 0 deletions

View File

@ -61,6 +61,9 @@ consul_base_conf:
telemetry:
prometheus_retention_time: 1h
connect:
enabled: False
consul_extra_conf: {}
consul_host_conf: {}
consul_conf: "{{ consul_base_conf | combine(consul_extra_conf, recursive=True) | combine(consul_host_conf, recursive=True) }}"

View File

@ -61,3 +61,9 @@ recursors = [
telemetry {
prometheus_retention_time = "{{ consul_conf.telemetry.prometheus_retention_time }}"
}
{% if consul_conf.connect.enabled %}
connect {
enabled = true
}
{% endif %}