From 2da9cc14bf05af369c2036c2824d3e701c807467 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Mon, 13 Jan 2020 11:07:06 -0500 Subject: [PATCH] horizon: put plugins toggles in quotes Without quotes, it seems like Ansible "from_yaml" filter will convert yes to True and no to False; which is problematic in the case of Kolla image for Horizon where the extend_start script checks for yes/no and not the actual booleans. Putting them between quotes seems to solve the issue. Change-Id: Ie08726c0916c55c3d4c315b63ee341196cc2e70e Closes-Bug: #1859491 --- .../horizon/horizon-container-puppet.yaml | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/deployment/horizon/horizon-container-puppet.yaml b/deployment/horizon/horizon-container-puppet.yaml index ebccca9fd6..f028bc84bb 100644 --- a/deployment/horizon/horizon-container-puppet.yaml +++ b/deployment/horizon/horizon-container-puppet.yaml @@ -289,30 +289,30 @@ outputs: environment: KOLLA_CONFIG_STRATEGY: COPY_ALWAYS # Installed plugins: - ENABLE_CLOUDKITTY: no - ENABLE_IRONIC: yes - ENABLE_MAGNUM: no - ENABLE_MANILA: yes - ENABLE_HEAT: yes + ENABLE_CLOUDKITTY: 'no' + ENABLE_IRONIC: 'yes' + ENABLE_MAGNUM: 'no' + ENABLE_MANILA: 'yes' + ENABLE_HEAT: 'yes' # murano depends on heat-dashboard that is not yet installed # https://bugs.launchpad.net/tripleo/+bug/1752132 - ENABLE_MURANO: no - ENABLE_MISTRAL: yes - ENABLE_OCTAVIA: yes - ENABLE_SAHARA: yes - ENABLE_TROVE: no + ENABLE_MURANO: 'no' + ENABLE_MISTRAL: 'yes' + ENABLE_OCTAVIA: 'yes' + ENABLE_SAHARA: 'yes' + ENABLE_TROVE: 'no' # Not installed: - ENABLE_FREEZER: no - ENABLE_FWAAS: no - ENABLE_KARBOR: no - ENABLE_DESIGNATE: no - ENABLE_SEARCHLIGHT: no - ENABLE_SENLIN: no - ENABLE_SOLUM: no - ENABLE_TACKER: no - ENABLE_WATCHER: no - ENABLE_ZAQAR: no - ENABLE_ZUN: no + ENABLE_FREEZER: 'no' + ENABLE_FWAAS: 'no' + ENABLE_KARBOR: 'no' + ENABLE_DESIGNATE: 'no' + ENABLE_SEARCHLIGHT: 'no' + ENABLE_SENLIN: 'no' + ENABLE_SOLUM: 'no' + ENABLE_TACKER: 'no' + ENABLE_WATCHER: 'no' + ENABLE_ZAQAR: 'no' + ENABLE_ZUN: 'no' host_prep_tasks: - name: create persistent directories file: