Merge "Support configuration of custom fluentd inputs"

This commit is contained in:
Zuul 2018-11-09 17:25:27 +00:00 committed by Gerrit Code Review
commit 0bcebebde6
5 changed files with 12 additions and 0 deletions

View File

@ -28,6 +28,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
@pytest.mark.parametrize(
'path',
['fluentd/filter',
'fluentd/input',
'fluentd/output',
'keystone'])
def test_service_config_directory(host, path):

View File

@ -31,6 +31,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
'cinder',
'designate',
'fluentd/filter',
'fluentd/input',
'fluentd/output',
'glance',
'grafana',

View File

@ -34,6 +34,11 @@ kolla_openstack_custom_config:
dest: "{{ kolla_node_custom_config_path }}/fluentd/filter"
patterns: "*.conf"
enabled: true
# Fluentd inputs.
- src: "{{ kolla_extra_config_path }}//fluentd/input"
dest: "{{ kolla_node_custom_config_path }}/fluentd/input"
patterns: "*.conf"
enabled: true
# Fluentd outputs.
- src: "{{ kolla_extra_config_path }}/fluentd/output"
dest: "{{ kolla_node_custom_config_path }}/fluentd/output"

View File

@ -151,6 +151,7 @@ which files are supported.
``glance.conf`` Glance configuration.
``glance/*`` Extended glance configuration.
``fluentd/filter`` Fluentd filter configuration.
``fluentd/input`` Fluentd input configuration.
``fluentd/output`` Fluentd output configuration.
``heat.conf`` Heat configuration.
``heat/*`` Extended heat configuration.

View File

@ -0,0 +1,4 @@
---
features:
- |
Supports fluentd custom input configuration