Jump to: navigation, search

NeutronDevstack

Revision as of 14:42, 26 February 2012 by Deepak (talk) (its a bad idea to replace the value of ENABLED_SERVICES as it will be replace the user added services. Also we should simple include the services which are necessary for Quantum.)

In order to use Quantum with devstack (http://devstack.org) you'll need to add "quantum" and "q-svc" to ENABLED_SERVICES in your localrc. See this page for more details on localrc settings: http://devstack.org/stack.sh.html.

If you want to enable the openvswitch plugin, you'll have to set Q_PLUGIN to "openvswitch" and also add "q-agt" to ENABLED_SERVICES in order to start the openvswitch quantum agent (also in your localrc).

For example:

ENABLED_SERVICES="openstackx,q-svc,quantum,q-agt"
Q_PLUGIN=openvswitch


Then run stack.sh as normal.

To enable melange in devstack add "melange" and "m-svc" to the ENABLED_SERVICES (melange requires quantum to be enabled as well).

For example:

ENABLED_SERVICES+="openstackx,q-svc,q-agt,m-svc,quantum,melange"