Merge "Enable neutron to work in a multi node setup"

This commit is contained in:
Jenkins 2016-09-06 14:02:07 +00:00 committed by Gerrit Code Review
commit fac8adbe1b
3 changed files with 12 additions and 4 deletions

View File

@ -305,6 +305,9 @@ function configure_neutron_nova_new {
iniset $NOVA_CONF DEFAULT firewall_driver nova.virt.firewall.NoopFirewallDriver
# optionally set options in nova_conf
neutron_plugin_create_nova_conf
if is_service_enabled neutron-metadata-agent; then
iniset $NOVA_CONF neutron service_metadata_proxy "True"
fi

View File

@ -146,6 +146,14 @@ function _neutron_get_ext_gw_interface {
}
function create_neutron_initial_network {
if ! is_service_enabled q-svc && ! is_service_enabled neutron-api; then
echo "Controller services not enabled. No networks configured!"
return
fi
if [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "False" ]]; then
echo "Network creation disabled!"
return
fi
local project_id
project_id=$(openstack project list | grep " demo " | get_field 1)
die_if_not_set $LINENO project_id "Failure retrieving project_id for demo"

View File

@ -1267,10 +1267,7 @@ if is_service_enabled neutron; then
start_neutron
fi
# Once neutron agents are started setup initial network elements
if is_service_enabled q-svc && [[ "$NEUTRON_CREATE_INITIAL_NETWORKS" == "True" ]]; then
echo_summary "Creating initial neutron network elements"
create_neutron_initial_network
fi
create_neutron_initial_network
if is_service_enabled nova; then
echo_summary "Starting Nova"