This page describes how to setup a working development environment that can be used in deploying manila on latest releases of Ubuntu or Fedora. These instructions assume you are already familiar with git. Refer to Getting the code for additional information.
Following these instructions will allow you to have a fully functional manila environment using the devstack project (a shell script to build complete OpenStack development environments).
Manila can be enabled in devstack by using the plug-in based interface it offers.
Start by cloning the devstack repository:
git clone https://github.com/openstack-dev/devstack
Change to devstack directory:
cd devstack/
Copy the local.conf sample file to the upper level directory:
cp samples/local.conf .
Enable the manila plugin adding the following line to the end of the local.conf file:
enable_plugin manila https://github.com/openstack/manila
In order to use the manila UI you will need to enable the UI plugin separately.
This is done in a similar fashion than enabling manila for devstack.
Make sure you have horizon enabled (enabled by default in current devstack).
Then, enable the manila UI plugin adding the following line to the end of the local.conf file, just after manila plugin enablement:
enable_plugin manila-ui https://github.com/openstack/manila-ui
Run the stack.sh script:
./stack.sh
After it completes, you should have manila services running. You can check if they are running by attaching to the screen:
screen -r stack
And navigating to the manila service tabs (use ctrl+a n, ctrl+a p, ctrl+a ” <screen number> to navigate, ctrl+a esc to enter scrollback mode and ctrl+a d to detach from the screen).
If you enabled manila UI as well, you should be able to access manila UI from the dashboard.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.