ec1f9e4e01
First pack of changes in upcoming chain to redesign Rally docs. All information related to the installation and upgrades process separated and refactored. Modified files fit 80 symbols margin where possible. [TODO] continue with other parts of the docs: - Quick start aka Rally step-by-step - Command Line Interface - Rally Task Component - Rally Verification Component - Rally Plugins, Rally Plugins Reference - Contribute to Rally - Request New Features - Project Info [TODO] add 80 symbols margin check similar to what Performance Documentation has Change-Id: I0075be010fcad98272cec0928bcd29ca7b655d33
31 lines
719 B
ReStructuredText
31 lines
719 B
ReStructuredText
Rally with DevStack all-in-one installation
|
|
-------------------------------------------
|
|
|
|
It is also possible to install Rally with DevStack. First, clone the
|
|
corresponding repositories:
|
|
|
|
.. code-block:: bash
|
|
|
|
git clone https://git.openstack.org/openstack-dev/devstack
|
|
git clone https://github.com/openstack/rally
|
|
|
|
Then, configure DevStack to run Rally. First, create your ``local.conf`` file:
|
|
|
|
.. code-block:: bash
|
|
|
|
cd devstack
|
|
cp samples/local.conf local.conf
|
|
|
|
Next, edit local.conf: add the following line to the ``[[local|localrc]]``
|
|
section.
|
|
|
|
.. code-block:: bash
|
|
|
|
enable_plugin rally https://github.com/openstack/rally master
|
|
|
|
Finally, run DevStack as usually:
|
|
|
|
.. code-block:: bash
|
|
|
|
./stack.sh
|