From 138ff1656d89f96846ed46ec1ce8f3ed6e5e15e1 Mon Sep 17 00:00:00 2001 From: "qiankun.zhang" Date: Thu, 19 Jan 2017 04:30:56 -0500 Subject: [PATCH] Enable tacker_horizon when enable_tacker is yes Depends-On: Ic63c88436b03c14ef767ee102625e697250c00e0 Change-Id: I0220cdb13686deda8b7a3a622530cd72fbe80dad Closes-Bug: #1647894 --- ansible/group_vars/all.yml | 1 + ansible/roles/horizon/tasks/start.yml | 1 + etc/kolla/globals.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 96198d87f2..c11e491cc1 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -321,6 +321,7 @@ enable_horizon_sahara: "{{ enable_sahara | bool }}" enable_horizon_searchlight: "{{ enable_searchlight | bool }}" enable_horizon_senlin: "{{ enable_senlin | bool }}" enable_horizon_solum: "{{ enable_solum | bool }}" +enable_horizon_tacker: "{{ enable_tacker | bool }}" enable_horizon_trove: "{{ enable_trove | bool }}" enable_horizon_watcher: "{{ enable_watcher | bool }}" enable_influxdb: "no" diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml index 173cddb12d..2d4d9fd2d6 100644 --- a/ansible/roles/horizon/tasks/start.yml +++ b/ansible/roles/horizon/tasks/start.yml @@ -18,6 +18,7 @@ ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_horizon_searchlight | bool else 'no' }}" ENABLE_SENLIN: "{{ 'yes' if enable_horizon_senlin | bool else 'no' }}" ENABLE_SOLUM: "{{ 'yes' if enable_horizon_solum | bool else 'no' }}" + ENABLE_TACKER: "{{ 'yes' if enable_horizon_tacker | bool else 'no' }}" ENABLE_TROVE: "{{ 'yes' if enable_horizon_trove | bool else 'no' }}" ENABLE_WATCHER: "{{ 'yes' if enable_horizon_watcher | bool else 'no' }}" volumes: diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index d4f8820eb3..43b62e9f04 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -151,6 +151,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_horizon_searchlight: "{{ enable_searchlight | bool }}" #enable_horizon_senlin: "{{ enable_senlin | bool }}" #enable_horizon_solum: "{{ enable_solum | bool }}" +#enable_horizon_tacker: "{{ enable_tacker | bool }}" #enable_horizon_trove: "{{ enable_trove | bool }}" #enable_horizon_watcher: "{{ enable_watcher | bool }}" #enable_influxdb: "no"