Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 1 | # Brocade Neutron Plugin |
| 2 | # ---------------------- |
| 3 | |
| 4 | # Save trace setting |
| 5 | BRCD_XTRACE=$(set +o | grep xtrace) |
| 6 | set +o xtrace |
| 7 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 8 | function is_neutron_ovs_base_plugin { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 9 | return 1 |
| 10 | } |
| 11 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 12 | function neutron_plugin_create_nova_conf { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 13 | NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"} |
| 14 | } |
| 15 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 16 | function neutron_plugin_install_agent_packages { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 17 | install_package bridge-utils |
| 18 | } |
| 19 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 20 | function neutron_plugin_configure_common { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 21 | Q_PLUGIN_CONF_PATH=etc/neutron/plugins/brocade |
| 22 | Q_PLUGIN_CONF_FILENAME=brocade.ini |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 23 | Q_PLUGIN_CLASS="neutron.plugins.brocade.NeutronPlugin.BrocadePluginV2" |
| 24 | } |
| 25 | |
Shiv Haris | 815ef98 | 2014-04-08 15:19:12 -0700 | [diff] [blame] | 26 | function neutron_plugin_configure_service { |
| 27 | |
| 28 | if [[ "$BROCADE_SWITCH_OS_VERSION" != "" ]]; then |
| 29 | iniset /$Q_PLUGIN_CONF_FILE switch osversion $BROCADE_SWITCH_OS_VERSION |
| 30 | fi |
| 31 | |
| 32 | if [[ "$BROCADE_SWITCH_OS_TYPE" != "" ]]; then |
| 33 | iniset /$Q_PLUGIN_CONF_FILE switch ostype $BROCADE_SWITCH_OS_TYPE |
| 34 | fi |
| 35 | |
| 36 | if [[ "$BROCADE_SWITCH_PASSWORD" != "" ]]; then |
| 37 | iniset /$Q_PLUGIN_CONF_FILE switch password $BROCADE_SWITCH_PASSWORD |
| 38 | fi |
| 39 | |
| 40 | if [[ "$BROCADE_SWITCH_USERNAME" != "" ]]; then |
| 41 | iniset /$Q_PLUGIN_CONF_FILE switch username $BROCADE_SWITCH_USERNAME |
| 42 | fi |
| 43 | |
| 44 | if [[ "$BROCADE_SWITCH_IPADDR" != "" ]]; then |
| 45 | iniset /$Q_PLUGIN_CONF_FILE switch address $BROCADE_SWITCH_IPADDR |
| 46 | fi |
| 47 | |
| 48 | } |
| 49 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 50 | function neutron_plugin_configure_debug_command { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 51 | iniset $NEUTRON_TEST_CONFIG_FILE DEFAULT external_network_bridge |
| 52 | } |
| 53 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 54 | function neutron_plugin_configure_dhcp_agent { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 55 | iniset $Q_DHCP_CONF_FILE DEFAULT dhcp_agent_manager neutron.agent.dhcp_agent.DhcpAgentWithStateReport |
| 56 | } |
| 57 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 58 | function neutron_plugin_configure_l3_agent { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 59 | iniset $Q_L3_CONF_FILE DEFAULT external_network_bridge |
| 60 | iniset $Q_L3_CONF_FILE DEFAULT l3_agent_manager neutron.agent.l3_agent.L3NATAgentWithStateReport |
| 61 | } |
| 62 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 63 | function neutron_plugin_configure_plugin_agent { |
Shiv Haris | 55d9b9a | 2014-01-14 11:33:28 -0800 | [diff] [blame] | 64 | AGENT_BINARY="$NEUTRON_BIN_DIR/neutron-linuxbridge-agent" |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 65 | } |
| 66 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 67 | function neutron_plugin_setup_interface_driver { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 68 | local conf_file=$1 |
| 69 | iniset $conf_file DEFAULT interface_driver neutron.agent.linux.interface.BridgeInterfaceDriver |
| 70 | } |
| 71 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 72 | function has_neutron_plugin_security_group { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 73 | # 0 means True here |
| 74 | return 0 |
| 75 | } |
| 76 | |
Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 77 | function neutron_plugin_check_adv_test_requirements { |
Mark McClain | b05c876 | 2013-07-06 23:29:39 -0400 | [diff] [blame] | 78 | is_service_enabled q-agt && is_service_enabled q-dhcp && return 0 |
| 79 | } |
| 80 | |
| 81 | # Restore xtrace |
| 82 | $BRCD_XTRACE |