Update README to include needed horizon patch

This commit is contained in:
Gary W. Smith 2015-04-10 08:54:33 -07:00
parent 71f09277f8
commit a0050d0a4f
1 changed files with 11 additions and 7 deletions

View File

@ -17,10 +17,13 @@ Begin by cloning the Horizon and Manila UI repositories::
git clone https://github.com/openstack/horizon
git clone https://github.com/hp-storage/manila-ui
Go into ``horizon`` and have pip create a virtual environment and install
Horizon dependencies::
Apply a patch to horizon since it currently fails to load plugins correctly::
cd horizon
git review -d 128133
Create a virtual environment and install Horizon dependencies::
./run_tests.sh -8
Set up your ``local_settings.py`` file::
@ -30,11 +33,6 @@ Set up your ``local_settings.py`` file::
Open up the copied ``local_settings.py`` file in your preferred text
editor. You will want to customize several settings:
- ``OPENSTACK_HOST`` should be configured with the hostname of your
OpenStack server. Verify that the ``OPENSTACK_KEYSTONE_URL`` and
``OPENSTACK_KEYSTONE_DEFAULT_ROLE`` settings are correct for your
environment. (They should be correct unless you modified your
OpenStack server to change them.)
- ``HORIZON_CONFIG`` requires, an entry, ``customization_module``,
that refers to ``manila_ui.overrides``::
@ -44,6 +42,12 @@ editor. You will want to customize several settings:
'customization_module': 'manila_ui.overrides',
}
- ``OPENSTACK_HOST`` should be configured with the hostname of your
OpenStack server. Verify that the ``OPENSTACK_KEYSTONE_URL`` and
``OPENSTACK_KEYSTONE_DEFAULT_ROLE`` settings are correct for your
environment. (They should be correct unless you modified your
OpenStack server to change them.)
Install Manila UI with all dependencies in your virtual environment::