
- Add a top level CONTRIBUTING.rst for repo browsers - Refactor existing contributor guide - Add a contributor/contributing.rst file with links back to relevant manila documentation. - Rearrange some things in the main doc index file to make things prettier. Change-Id: I1cc4c2f3d78e04a78dc46221e5edf786fd22a372 Story: #2007236 Task: #39554 Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
39 lines
1.2 KiB
ReStructuredText
39 lines
1.2 KiB
ReStructuredText
============
|
|
Installation
|
|
============
|
|
|
|
Manual Installation
|
|
-------------------
|
|
|
|
Begin by installing Horizon following the `Horizon Manual Installation Guide <https://docs.openstack.org/horizon/latest/install/from-source.html>`__
|
|
and clone Manila UI repository::
|
|
|
|
git clone https://opendev.org/openstack/manila-ui
|
|
|
|
Install Manila UI with all dependencies. From within the horizon folder::
|
|
|
|
pip install -e ../manila-ui/
|
|
|
|
And enable it in Horizon.::
|
|
|
|
cp ../manila-ui/manila_ui/local/enabled/_*.py openstack_dashboard/local/enabled
|
|
cp ../manila-ui/manila_ui/local/local_settings.d/_90_manila_*.py openstack_dashboard/local/local_settings.d
|
|
|
|
|
|
.. _install-rdo:
|
|
|
|
Installing Manila UI in RDO
|
|
---------------------------
|
|
|
|
In order to install Manila UI in `RDO <https://www.rdoproject.org>`__,
|
|
please follow the steps below (you may need to use `sudo` privileges
|
|
if you are not root)::
|
|
|
|
# yum install -y openstack-manila-ui
|
|
# systemctl restart httpd
|
|
# systemctl restart memcached
|
|
|
|
Manila UI will now be available through OpenStack Horizon; look for
|
|
the Shares tab under Project > Share. You can access Horizon with
|
|
Manila UI using the same URL and port as before.
|