afdd11b9a2
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
12 lines
227 B
Django/Jinja
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>
|