Clarify devstack install instructions

Change-Id: I306a3446db9e2adfc8f06550d7898da78d206fb9
This commit is contained in:
Tim Hinrichs 2016-02-26 08:33:44 -08:00
parent ea91316197
commit 35c56c50d4
1 changed files with 22 additions and 7 deletions

View File

@ -101,16 +101,31 @@ For integrating congress with DevStack::
1. Download DevStack::
git clone https://git.openstack.org/openstack-dev/devstack.git
cd devstack
$ git clone https://git.openstack.org/openstack-dev/devstack.git
$ cd devstack
2. Add this repo as an external repository::
2. Configure devstack to use Congress and any other service you want. To do that, modify
the ``local.conf`` file (inside the devstack directory). Here is what our file looks like::
> cat local.conf
[[local|localrc]]
enable_plugin congress https://git.openstack.org/openstack/congress
[[local|localrc]]
enable_plugin congress http://git.openstack.org/openstack/congress
enable_plugin ceilometer http://git.openstack.org/openstack/ceilometer
enable_service h-eng h-api h-api-cfn h-api-cw
disable_service n-net
enable_service neutron
enable_service q-svc
enable_service q-agt
enable_service q-dhcp
enable_service q-l3
enable_service q-meta
enable_service s-proxy s-object s-container s-account
3. Run ``stack.sh``. The default configuration expects the passwords to be 'password'
without the quotes::
$ ./stack.sh
3. Run ``stack.sh``
4.2 Standalone-install
----------------------