From b3ab37d0c85c6447a761acef070b188276635545 Mon Sep 17 00:00:00 2001 From: caoyuan Date: Mon, 5 Dec 2016 14:25:42 +0800 Subject: [PATCH] Enable mistral dashboard when enable_mistral is yes Depends-On: I37c73e6304ed005fe019dcdd105c1f333137fa60 Change-Id: I544810afaa5c740f67702ba34e146c19b480de8d Closes-Bug: #1647267 --- ansible/roles/horizon/tasks/start.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml index e6a1b8e84e..d271143269 100644 --- a/ansible/roles/horizon/tasks/start.yml +++ b/ansible/roles/horizon/tasks/start.yml @@ -10,6 +10,7 @@ ENABLE_DESIGNATE: "{{ 'yes' if enable_designate | bool else 'no' }}" ENABLE_IRONIC: "{{ 'yes' if enable_ironic | bool else 'no' }}" ENABLE_MANILA: "{{ 'yes' if enable_manila | bool else 'no' }}" + ENABLE_MISTRAL: "{{ 'yes' if enable_mistral | bool else 'no' }}" ENABLE_NEUTRON_LBAAS: "{{ 'yes' if enable_neutron_lbaas | bool else 'no' }}" ENABLE_SAHARA: "{{ 'yes' if enable_sahara | bool else 'no' }}" ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_searchlight | bool else 'no' }}"