diff options
author | Juan Badia Payno <jbadiapa@redhat.com> | 2017-08-31 11:07:11 +0200 |
---|---|---|
committer | Martin Mágr <mmagr@redhat.com> | 2017-10-09 11:38:44 +0200 |
commit | 404c14e4d6f795d5ba7265a819dccc86a5ecb4e1 (patch) | |
tree | 5d410d8821ced87fa3d3f5d8ef2147711d462f60 /tools | |
parent | 6fea40f786a466802503c03b2b815d05676e1807 (diff) |
docker: add logging(source & groups)
The services that docker depends on, have logging_sources and logging_groups;
but those are not set on the docker outputs so they are not used when dockers
are deployed.
Added logging_source & logging_groups as docker optional parameters in
tools/yaml-validate.py
Closes-Bug: #1718110
Change-Id: I8795eaf4bd06051e9b94aa50450dee0d8761e526
(cherry picked from commit 5dbe1121e98a794ec6a6387ff56ee34314177567)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/yaml-validate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yaml-validate.py b/tools/yaml-validate.py index 66ac1010..de8ba806 100755 --- a/tools/yaml-validate.py +++ b/tools/yaml-validate.py @@ -37,7 +37,7 @@ REQUIRED_DOCKER_SECTIONS = ['service_name', 'docker_config', 'puppet_config', OPTIONAL_DOCKER_SECTIONS = ['docker_puppet_tasks', 'upgrade_tasks', 'post_upgrade_tasks', 'service_config_settings', 'host_prep_tasks', 'metadata_settings', - 'kolla_config'] + 'kolla_config', 'logging_source', 'logging_groups'] REQUIRED_DOCKER_PUPPET_CONFIG_SECTIONS = ['config_volume', 'step_config', 'config_image'] OPTIONAL_DOCKER_PUPPET_CONFIG_SECTIONS = [ 'puppet_tags', 'volumes' ] |