| Sean Dague | e263c82 | 2014-12-05 14:25:28 -0500 | [diff] [blame] | 1 | #!/bin/bash | 
|  | 2 | # | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 3 | # Neutron MidoNet plugin | 
|  | 4 | # ---------------------- | 
|  | 5 |  | 
| Ryu Ishimoto | 18d5c83 | 2014-02-19 00:33:46 +0900 | [diff] [blame] | 6 | MIDONET_DIR=${MIDONET_DIR:-$DEST/midonet} | 
|  | 7 | MIDONET_API_PORT=${MIDONET_API_PORT:-8080} | 
|  | 8 | MIDONET_API_URL=${MIDONET_API_URL:-http://localhost:$MIDONET_API_PORT/midonet-api} | 
|  | 9 |  | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 10 | # Save trace setting | 
| Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 11 | MN_XTRACE=$(set +o | grep xtrace) | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 12 | set +o xtrace | 
|  | 13 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 14 | function is_neutron_ovs_base_plugin { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 15 | # MidoNet does not use l3-agent | 
|  | 16 | # 0 means True here | 
|  | 17 | return 1 | 
|  | 18 | } | 
|  | 19 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 20 | function neutron_plugin_create_nova_conf { | 
| Joe Mills | a2fd222 | 2013-10-04 11:46:10 +0000 | [diff] [blame] | 21 | NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"} | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 22 | } | 
|  | 23 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 24 | function neutron_plugin_install_agent_packages { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 25 | : | 
|  | 26 | } | 
|  | 27 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 28 | function neutron_plugin_configure_common { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 29 | Q_PLUGIN_CONF_PATH=etc/neutron/plugins/midonet | 
|  | 30 | Q_PLUGIN_CONF_FILENAME=midonet.ini | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 31 | Q_PLUGIN_CLASS="neutron.plugins.midonet.plugin.MidonetPluginV2" | 
|  | 32 | } | 
|  | 33 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 34 | function neutron_plugin_configure_debug_command { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 35 | : | 
|  | 36 | } | 
|  | 37 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 38 | function neutron_plugin_configure_dhcp_agent { | 
| Ryu Ishimoto | 35f0966 | 2013-08-27 18:32:00 +0900 | [diff] [blame] | 39 | DHCP_DRIVER=${DHCP_DRIVER:-"neutron.plugins.midonet.agent.midonet_driver.DhcpNoOpDriver"} | 
| Joe Mills | e4a523f | 2013-10-28 07:38:55 +0000 | [diff] [blame] | 40 | neutron_plugin_setup_interface_driver $Q_DHCP_CONF_FILE | 
| Ryu Ishimoto | 35f0966 | 2013-08-27 18:32:00 +0900 | [diff] [blame] | 41 | iniset $Q_DHCP_CONF_FILE DEFAULT dhcp_driver $DHCP_DRIVER | 
| Ryu Ishimoto | 35f0966 | 2013-08-27 18:32:00 +0900 | [diff] [blame] | 42 | iniset $Q_DHCP_CONF_FILE DEFAULT use_namespaces True | 
|  | 43 | iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata True | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 44 | } | 
|  | 45 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 46 | function neutron_plugin_configure_l3_agent { | 
| Sean Dague | 3bdb922 | 2013-10-22 08:36:16 -0400 | [diff] [blame] | 47 | die $LINENO "q-l3 must not be executed with MidoNet plugin!" | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 48 | } | 
|  | 49 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 50 | function neutron_plugin_configure_plugin_agent { | 
| Sean Dague | 3bdb922 | 2013-10-22 08:36:16 -0400 | [diff] [blame] | 51 | die $LINENO "q-agt must not be executed with MidoNet plugin!" | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 52 | } | 
|  | 53 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 54 | function neutron_plugin_configure_service { | 
| Ryu Ishimoto | 18d5c83 | 2014-02-19 00:33:46 +0900 | [diff] [blame] | 55 | if [[ "$MIDONET_API_URL" != "" ]]; then | 
|  | 56 | iniset /$Q_PLUGIN_CONF_FILE MIDONET midonet_uri $MIDONET_API_URL | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 57 | fi | 
|  | 58 | if [[ "$MIDONET_USERNAME" != "" ]]; then | 
|  | 59 | iniset /$Q_PLUGIN_CONF_FILE MIDONET username $MIDONET_USERNAME | 
|  | 60 | fi | 
|  | 61 | if [[ "$MIDONET_PASSWORD" != "" ]]; then | 
|  | 62 | iniset /$Q_PLUGIN_CONF_FILE MIDONET password $MIDONET_PASSWORD | 
|  | 63 | fi | 
|  | 64 | if [[ "$MIDONET_PROJECT_ID" != "" ]]; then | 
|  | 65 | iniset /$Q_PLUGIN_CONF_FILE MIDONET project_id $MIDONET_PROJECT_ID | 
|  | 66 | fi | 
| Tomoe Sugihara | 81fe5f5 | 2013-11-14 20:04:44 +0000 | [diff] [blame] | 67 |  | 
|  | 68 | Q_L3_ENABLED=True | 
|  | 69 | Q_L3_ROUTER_PER_TENANT=True | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 70 | } | 
|  | 71 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 72 | function neutron_plugin_setup_interface_driver { | 
| Joe Mills | e4a523f | 2013-10-28 07:38:55 +0000 | [diff] [blame] | 73 | local conf_file=$1 | 
|  | 74 | iniset $conf_file DEFAULT interface_driver neutron.agent.linux.interface.MidonetInterfaceDriver | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 75 | } | 
|  | 76 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 77 | function has_neutron_plugin_security_group { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 78 | # 0 means True here | 
|  | 79 | return 0 | 
|  | 80 | } | 
|  | 81 |  | 
| Ian Wienand | aee18c7 | 2014-02-21 15:35:08 +1100 | [diff] [blame] | 82 | function neutron_plugin_check_adv_test_requirements { | 
| av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 83 | # 0 means True here | 
|  | 84 | return 1 | 
|  | 85 | } | 
|  | 86 |  | 
|  | 87 | # Restore xtrace | 
| Dean Troyer | e3a9160 | 2014-03-28 12:40:56 -0500 | [diff] [blame] | 88 | $MN_XTRACE |