kolla-ansible/ansible/roles/common/templates/conf/input/01-syslog.conf.j2
Bertrand Lallau afdd11b9a2 Generalize api_interface_address variable usage
Useful api_interface_address variable has been define here:
https://github.com/openstack/kolla-ansible/blob/master/ansible/group_vars/all.yml#L57
In order to simplify codebase we must use it as much as possible.

Change-Id: I18fec19bf69e05a22a4142a9cd1165eccd022455
2017-05-23 08:35:15 +00:00

12 lines
227 B
Django/Jinja

<source>
@type syslog
port {{ fluentd_syslog_port }}
{% if orchestration_engine != 'KUBERNETES' %}
bind {{ api_interface_address }}
{% else %}
bind 0.0.0.0
{% endif %}
tag syslog
format /^(?<Payload>.*)$/
</source>