~rakhmerov/mistral/master

« back to all changes in this revision

Viewing changes to contrib/devstack/README.rst

  • Committer: Gerrit Code Review
  • Author(s): Jenkins
  • Date: 2015-09-14 11:34:40 UTC
  • mfrom: (779.1.1)
  • Revision ID: git-v1:ffe6524573b646296c9e36e8ddf3766bb78f4ef8
Merge "Switch to devstack plugin"

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#. Follow Devstack documentation to setup a host for Devstack. Then clone
2
 
   Devstack source code::
3
 
 
4
 
      $ git clone https://github.com/openstack-dev/devstack
5
 
 
6
 
#. Clone Mistral source code::
7
 
 
8
 
      $ git clone https://github.com/openstack/mistral
9
 
 
10
 
#. Copy Mistral integration scripts to Devstack::
11
 
 
12
 
      $ cp mistral/contrib/devstack/lib/mistral ${DEVSTACK_DIR}/lib
13
 
      $ cp mistral/contrib/devstack/extras.d/70-mistral.sh ${DEVSTACK_DIR}/extras.d/
14
 
 
15
 
#. Create/modify a ``localrc`` file as input to devstack::
16
 
 
17
 
      $ cd devstack
18
 
      $ touch localrc
19
 
 
20
 
#. The Mistral service is not enabled by default, so it must be enabled in ``localrc``
21
 
   before running ``stack.sh``. This example of ``localrc``
22
 
   file shows all of the settings required for Mistral::
23
 
 
24
 
      # Enable Mistral
25
 
      enable_service mistral
26
 
 
27
 
#. Deploy your OpenStack Cloud with Mistral::
28
 
 
29
 
   $ ./stack.sh
30
 
 
31
 
 
32
 
Note:
33
 
 
34
 
#. All needed keystone endpoints for Mistral will be automatically created during installation.
35
 
#. Python-mistralclient will be also cloned and installed automatically.