Merge "Add variable to specify additional parameters for the Neutron service."
This commit is contained in:
commit
dc719f26e3
11
README.md
11
README.md
@ -122,13 +122,14 @@ In order to enable Neutron a single node setup, you'll need the following settin
|
||||
|
||||
Then run `stack.sh` as normal.
|
||||
|
||||
devstack supports adding specific Neutron configuration flags to both the Open vSwitch and LinuxBridge plugin configuration files. To make use of this feature, the following variables are defined and can be configured in your `localrc` file:
|
||||
devstack supports adding specific Neutron configuration flags to the service, Open vSwitch plugin and LinuxBridge plugin configuration files. To make use of this feature, the following variables are defined and can be configured in your `localrc` file:
|
||||
|
||||
Variable Name Plugin Config File Section Modified
|
||||
Variable Name Config File Section Modified
|
||||
-------------------------------------------------------------------------------------
|
||||
Q_SRV_EXTRA_OPTS `OVS` (for Open Vswitch) or `LINUX_BRIDGE` (for LinuxBridge)
|
||||
Q_AGENT_EXTRA_AGENT_OPTS AGENT
|
||||
Q_AGENT_EXTRA_SRV_OPTS `OVS` (for Open Vswitch) or `LINUX_BRIDGE` (for LinuxBridge)
|
||||
Q_SRV_EXTRA_OPTS Plugin `OVS` (for Open Vswitch) or `LINUX_BRIDGE` (for LinuxBridge)
|
||||
Q_AGENT_EXTRA_AGENT_OPTS Plugin AGENT
|
||||
Q_AGENT_EXTRA_SRV_OPTS Plugin `OVS` (for Open Vswitch) or `LINUX_BRIDGE` (for LinuxBridge)
|
||||
Q_SRV_EXTRA_DEFAULT_OPTS Service DEFAULT
|
||||
|
||||
An example of using the variables in your `localrc` is below:
|
||||
|
||||
|
@ -614,6 +614,14 @@ function _configure_neutron_service() {
|
||||
iniset $NEUTRON_CONF DEFAULT auth_strategy $Q_AUTH_STRATEGY
|
||||
_neutron_setup_keystone $NEUTRON_CONF keystone_authtoken
|
||||
|
||||
# Define extra "DEFAULT" configuration options when q-svc is configured by
|
||||
# defining the array ``Q_SRV_EXTRA_DEFAULT_OPTS``.
|
||||
# For Example: ``Q_SRV_EXTRA_DEFAULT_OPTS=(foo=true bar=2)``
|
||||
for I in "${Q_SRV_EXTRA_DEFAULT_OPTS[@]}"; do
|
||||
# Replace the first '=' with ' ' for iniset syntax
|
||||
iniset $NEUTRON_CONF DEFAULT ${I/=/ }
|
||||
done
|
||||
|
||||
# Configure plugin
|
||||
neutron_plugin_configure_service
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user