From 27b1fde0de52d81b9bca2cfed9279aa9307f57bb Mon Sep 17 00:00:00 2001 From: caowei Date: Sat, 21 Jan 2017 10:42:37 +0800 Subject: [PATCH] Load karbor dashboard Depends-On: I12d9bc5263b5efbe2ef0277f152eb13e19bb5558 Change-Id: I5cfc0d4d9110b5b5081fa5d6ae14adfd627f5f59 Closes-Bug: #1658122 --- 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 29a1fada4f..b3ac5b6cd1 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -288,6 +288,7 @@ enable_heat: "yes" enable_horizon: "yes" enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" enable_horizon_ironic: "{{ enable_ironic | bool }}" +enable_horizon_karbor: "{{ enable_karbor | bool }}" enable_horizon_magnum: "{{ enable_magnum | bool }}" enable_horizon_manila: "{{ enable_manila | bool }}" enable_horizon_mistral: "{{ enable_mistral | bool }}" diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml index 0b44791ad5..042c6a49ea 100644 --- a/ansible/roles/horizon/tasks/start.yml +++ b/ansible/roles/horizon/tasks/start.yml @@ -8,6 +8,7 @@ environment: ENABLE_CLOUDKITTY: "{{ 'yes' if enable_horizon_cloudkitty | bool else 'no' }}" ENABLE_IRONIC: "{{ 'yes' if enable_horizon_ironic | bool else 'no' }}" + ENABLE_KARBOR: "{{ 'yes' if enable_horizon_karbor | bool else 'no' }}" ENABLE_MAGNUM: "{{ 'yes' if enable_horizon_magnum | bool else 'no' }}" ENABLE_MANILA: "{{ 'yes' if enable_horizon_manila | bool else 'no' }}" ENABLE_MISTRAL: "{{ 'yes' if enable_horizon_mistral | bool else 'no' }}" diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index 3b8d3d5fd3..3323c0b0d0 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -138,6 +138,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_horizon: "yes" #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" #enable_horizon_ironic: "{{ enable_ironic | bool }}" +#enable_horizon_karbor: "{{ enable_karbor | bool }}" #enable_horizon_magnum: "{{ enable_magnum | bool }}" #enable_horizon_manila: "{{ enable_manila | bool }}" #enable_horizon_mistral: "{{ enable_mistral | bool }}"