From d467161399bfbe9213e3b53e7a193d5b9e01a4a8 Mon Sep 17 00:00:00 2001 From: caowei Date: Sun, 5 Feb 2017 21:24:34 +0800 Subject: [PATCH] Load freezer dashboard Change-Id: Ib7354920de24dbab9481553bad6521e2f5e93fae Depends-On: I8a70c7e95cdd6517816060e148d3fdc4857182f4 Closes-Bug: #1661953 --- 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 eac67aa83a..b6469cbdd9 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -311,6 +311,7 @@ enable_grafana: "no" enable_heat: "yes" enable_horizon: "yes" enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" +enable_horizon_freezer: "{{ enable_freezer | bool }}" enable_horizon_ironic: "{{ enable_ironic | bool }}" enable_horizon_karbor: "{{ enable_karbor | bool }}" enable_horizon_magnum: "{{ enable_magnum | bool }}" diff --git a/ansible/roles/horizon/tasks/start.yml b/ansible/roles/horizon/tasks/start.yml index 2d4d9fd2d6..ea974b8ac3 100644 --- a/ansible/roles/horizon/tasks/start.yml +++ b/ansible/roles/horizon/tasks/start.yml @@ -7,6 +7,7 @@ name: "horizon" environment: ENABLE_CLOUDKITTY: "{{ 'yes' if enable_horizon_cloudkitty | bool else 'no' }}" + ENABLE_FREEZER: "{{ 'yes' if enable_horizon_freezer | 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' }}" diff --git a/etc/kolla/globals.yml b/etc/kolla/globals.yml index 88066733ed..52d7ad5e22 100644 --- a/etc/kolla/globals.yml +++ b/etc/kolla/globals.yml @@ -141,6 +141,7 @@ kolla_internal_vip_address: "10.10.10.254" #enable_heat: "yes" #enable_horizon: "yes" #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}" +#enable_horizon_freezer: "{{ enable_freezer | bool }}" #enable_horizon_ironic: "{{ enable_ironic | bool }}" #enable_horizon_karbor: "{{ enable_karbor | bool }}" #enable_horizon_magnum: "{{ enable_magnum | bool }}"