b05c876994
Note: Nova and Horizon are not updated until those projects have migrated. Change-Id: I256ef20e7caadd9c96e6dd908c5d8b69ca5c4aeb
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# PLUMgrid Neutron Plugin
|
|
# Edgar Magana emagana@plumgrid.com
|
|
# ------------------------------------
|
|
|
|
# Save trace settings
|
|
MY_XTRACE=$(set +o | grep xtrace)
|
|
set +o xtrace
|
|
|
|
#source $TOP_DIR/lib/neutron_plugins/ovs_base
|
|
|
|
function neutron_plugin_create_nova_conf() {
|
|
|
|
NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"}
|
|
}
|
|
|
|
function neutron_plugin_setup_interface_driver() {
|
|
:
|
|
}
|
|
|
|
function neutron_plugin_configure_common() {
|
|
Q_PLUGIN_CONF_PATH=etc/neutron/plugins/plumgrid
|
|
Q_PLUGIN_CONF_FILENAME=plumgrid.ini
|
|
Q_DB_NAME="plumgrid_neutron"
|
|
Q_PLUGIN_CLASS="neutron.plugins.plumgrid.plumgrid_nos_plugin.plumgrid_plugin.NeutronPluginPLUMgridV2"
|
|
}
|
|
|
|
function neutron_plugin_configure_service() {
|
|
PLUMGRID_NOS_IP=${PLUMGRID_NOS_IP:-localhost}
|
|
PLUMGRID_NOS_PORT=${PLUMGRID_NOS_PORT:-7766}
|
|
iniset /$Q_PLUGIN_CONF_FILE plumgridnos nos_server $PLUMGRID_NOS_IP
|
|
iniset /$Q_PLUGIN_CONF_FILE plumgridnos nos_server_port $PLUMGRID_NOS_PORT
|
|
}
|
|
|
|
function neutron_plugin_configure_debug_command() {
|
|
:
|
|
}
|
|
|
|
function neutron_plugin_check_adv_test_requirements() {
|
|
is_service_enabled q-agt && is_service_enabled q-dhcp && return 0
|
|
}
|
|
# Restore xtrace
|
|
$MY_XTRACE
|