devstack/lib/neutron_plugins
Denis Buliga 043141302c Skips enabling kernel bridge firewall in container
Calling enable_kernel_bridge_firewall inside a
container, devstack will crash because it tries to
load a kernel module by calling 'sudo modprobe' on
net.bridge.

Change-Id: Id4718c065d5a8c507d49f38e19c2796a64221aa4
Closes-Bug: #1662194
(cherry picked from commit 0bf75a471e)
2017-03-06 12:26:15 +02:00
..
services Allow default IPv6 route device names to have dots 2016-12-05 20:22:14 +00:00
README.md Remove NOVA_VIF_DRIVER variable 2015-08-25 13:40:25 -07:00
bigswitch_floodlight Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
brocade Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
cisco Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
embrane Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
linuxbridge_agent Skips enabling kernel bridge firewall in container 2017-03-06 12:26:15 +02:00
ml2 Fixes for linux bridge and Q_USE_PROVIDER_NET 2016-08-05 20:15:39 -07:00
nuage Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
openvswitch Namespace XTRACE commands 2015-11-27 15:36:04 +11:00
openvswitch_agent Merge "Remove stale config l3|dhcp_agent_manager options" 2016-08-17 14:02:44 +00:00
ovs_base Skips enabling kernel bridge firewall in container 2017-03-06 12:26:15 +02:00

README.md

Neutron plugin specific files

Neutron plugins require plugin specific behavior. The files under the directory, lib/neutron_plugins/, will be used when their service is enabled. Each plugin has lib/neutron_plugins/$Q_PLUGIN and define the following functions. Plugin specific configuration variables should be in this file.

  • filename: $Q_PLUGIN
    • The corresponding file name MUST be the same to plugin name $Q_PLUGIN. Plugin specific configuration variables should be in this file.

functions

lib/neutron-legacy calls the following functions when the $Q_PLUGIN is enabled

  • neutron_plugin_create_nova_conf : optionally set options in nova_conf
  • neutron_plugin_install_agent_packages : install packages that is specific to plugin agent e.g. install_package bridge-utils
  • neutron_plugin_configure_common : set plugin-specific variables, Q_PLUGIN_CONF_PATH, Q_PLUGIN_CONF_FILENAME, Q_PLUGIN_CLASS
  • neutron_plugin_configure_debug_command
  • neutron_plugin_configure_dhcp_agent
  • neutron_plugin_configure_l3_agent
  • neutron_plugin_configure_plugin_agent
  • neutron_plugin_configure_service
  • neutron_plugin_setup_interface_driver
  • has_neutron_plugin_security_group: return 0 if the plugin support neutron security group otherwise return 1
  • neutron_plugin_check_adv_test_requirements: return 0 if requirements are satisfied otherwise return 1