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
(cherry picked from commit 2da9cc14bf)
This commit is contained in:
Emilien Macchi 2020-01-13 11:07:06 -05:00
parent 9bf3a14d59
commit f9afb87b42
1 changed files with 21 additions and 21 deletions

View File

@ -290,30 +290,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: