Don't quote a boolean value in globals.yml

This commit is contained in:
Mark Goddard
2017-11-16 16:39:22 +00:00
parent 84e8ba948b
commit 817df37bf9
2 changed files with 4 additions and 4 deletions

View File

@@ -47,10 +47,10 @@
state: present
virtualenv: "{{ kolla_ansible_venv }}"
with_items:
# Intall Kolla Ansible from source.
# Install Kolla Ansible from source.
- name: "{{ kolla_ansible_source_path }}"
install: "{{ kolla_ansible_ctl_install_type == 'source' }}"
# Intall Kolla Ansible from PyPI.
# Install Kolla Ansible from PyPI.
- name: "kolla-ansible"
version: "{{ kolla_openstack_release }}"
install: "{{ kolla_ansible_ctl_install_type == 'binary' }}"

View File

@@ -135,7 +135,7 @@ neutron_tenant_network_types: {{ kolla_neutron_ml2_tenant_network_types | join('
# To provide encryption and authentication on the kolla_external_vip_interface,
# TLS can be enabled. When TLS is enabled, certificates must be provided to
# allow clients to perform authentication.
kolla_enable_tls_external: "{{ kolla_enable_tls_external }}"
kolla_enable_tls_external: {{ kolla_enable_tls_external | bool }}
kolla_external_fqdn_cert: "{{ kolla_external_fqdn_cert }}"
@@ -144,7 +144,7 @@ kolla_external_fqdn_cert: "{{ kolla_external_fqdn_cert }}"
####################
# Use these options to set the various log levels across all OpenStack projects
# Valid options are [ True, False ]
openstack_logging_debug: {{ kolla_openstack_logging_debug }}
openstack_logging_debug: {{ kolla_openstack_logging_debug | bool }}
# Valid options are [ novnc, spice ]
#nova_console: "novnc"