Liberty guidelines for freezer web ui

Resolves bug: 1546121
Change-Id: I623bdba5e0580feb3950180598bc6b79a0196e36
This commit is contained in:
Memo García 2016-02-16 14:55:38 +00:00
parent 4c5ee4ca57
commit a04a1a1767
4 changed files with 15 additions and 2 deletions

View File

@ -50,7 +50,11 @@ To install freezer dashboard for development you need to do the following::
# cd freezer-web-ui
# cp _50_freezer.py.example /opt/stack/horizon/openstack_dashboard/enabled/_50_freezer.py
# cp freezer-web-ui/disaster_recovery/enabled/_5050_freezer.py /opt/stack/horizon/openstack_dashboard/enabled/_5050_freezer.py
# to disable the panel just copy the following file
# cp freezer-web-ui/disaster_recovery/enabled/_7050_freezer.py /opt/stack/horizon/openstack_dashboard/enabled/_7050_freezer.py
# cd /opt/stack/horizon/
@ -69,7 +73,11 @@ To deploy freezer dashboard in production you need to do the following::
# cd freezer-web-ui
# cp _50_freezer.py.example /opt/stack/horizon/openstack_dashboard/enabled/_50_freezer.py
# cp freezer-web-ui/disaster_recovery/enabled/_5050_freezer.py /opt/stack/horizon/openstack_dashboard/enabled/_5050_freezer.py
# to disable the panel just copy the following file
# cp freezer-web-ui/disaster_recovery/enabled/_7050_freezer.py /opt/stack/horizon/openstack_dashboard/enabled/_7050_freezer.py
# make sure freezer is installed from source as detailed in the first step

View File

@ -0,0 +1,5 @@
# The name of the dashboard to be added to HORIZON['dashboards']. Required.
DASHBOARD = 'disaster_recovery'
# If set to True, this dashboard will not be added to the settings.
DISABLED = True

View File