Merge "Improving devstack docs"

This commit is contained in:
Jenkins 2015-06-24 10:41:39 +00:00 committed by Gerrit Code Review
commit e1d2cf3ff8

@ -1,35 +1,35 @@
1. Follow Devstack documentation to setup a host for Devstack. Then clone #. Follow Devstack documentation to setup a host for Devstack. Then clone
Devstack source code:: Devstack source code::
$ git clone https://github.com/openstack-dev/devstack $ git clone https://github.com/openstack-dev/devstack
1. Clone Mistral source code:: #. Clone Mistral source code::
$ git clone https://github.com/stackforge/mistral $ git clone https://github.com/openstack/mistral
1. Copy Mistral integration scripts to Devstack:: #. Copy Mistral integration scripts to Devstack::
$ cp mistral/contrib/devstack/lib/mistral ${DEVSTACK_DIR}/lib $ cp mistral/contrib/devstack/lib/mistral ${DEVSTACK_DIR}/lib
$ cp mistral/contrib/devstack/extras.d/70-mistral.sh ${DEVSTACK_DIR}/extras.d/ $ cp mistral/contrib/devstack/extras.d/70-mistral.sh ${DEVSTACK_DIR}/extras.d/
1. Create/modify a ``localrc`` file as input to devstack:: #. Create/modify a ``localrc`` file as input to devstack::
$ cd devstack $ cd devstack
$ touch localrc $ touch localrc
1. The Mistral service is not enabled by default, so it must be enabled in ``localrc`` #. The Mistral service is not enabled by default, so it must be enabled in ``localrc``
before running ``stack.sh``. This example of ``localrc`` before running ``stack.sh``. This example of ``localrc``
file shows all of the settings required for Mistral:: file shows all of the settings required for Mistral::
# Enable Mistral # Enable Mistral
enable_service mistral enable_service mistral
1. Deploy your OpenStack Cloud with Mistral:: #. Deploy your OpenStack Cloud with Mistral::
$ ./stack.sh $ ./stack.sh
Note: Note:
1. All needed Mistral keystone endpoints will be automatically created
during installation. #. All needed keystone endpoints for Mistral will be automatically created during installation.
1. Python-mistralclient also will be automatically cloned and installed. #. Python-mistralclient will be also cloned and installed automatically.