Merge "Fix the evaluating conditional for enable es and kibana"

This commit is contained in:
Jenkins 2016-08-05 08:13:17 +00:00 committed by Gerrit Code Review
commit a0707a52d5
1 changed files with 2 additions and 2 deletions

View File

@ -250,8 +250,8 @@ num_nova_fake_per_node: 5
elasticsearch_address: "{{ kolla_internal_vip_address }}"
elasticsearch_protocol: "{{ internal_protocol }}"
enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool }}"
enable_kibana: "{{ 'yes' if enable_central_logging | bool }}"
enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool else 'no' }}"
enable_kibana: "{{ 'yes' if enable_central_logging | bool else 'no' }}"
####################
# RabbitMQ options