av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 1 | # Neutron MidoNet plugin |
| 2 | # ---------------------- |
| 3 | |
| 4 | # Save trace setting |
| 5 | MY_XTRACE=$(set +o | grep xtrace) |
| 6 | set +o xtrace |
| 7 | |
| 8 | function is_neutron_ovs_base_plugin() { |
| 9 | # MidoNet does not use l3-agent |
| 10 | # 0 means True here |
| 11 | return 1 |
| 12 | } |
| 13 | |
| 14 | function neutron_plugin_create_nova_conf() { |
Joe Mills | a2fd222 | 2013-10-04 11:46:10 +0000 | [diff] [blame] | 15 | NOVA_VIF_DRIVER=${NOVA_VIF_DRIVER:-"nova.virt.libvirt.vif.LibvirtGenericVIFDriver"} |
av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | function neutron_plugin_install_agent_packages() { |
| 19 | : |
| 20 | } |
| 21 | |
| 22 | function neutron_plugin_configure_common() { |
| 23 | Q_PLUGIN_CONF_PATH=etc/neutron/plugins/midonet |
| 24 | Q_PLUGIN_CONF_FILENAME=midonet.ini |
| 25 | Q_DB_NAME="neutron_midonet" |
| 26 | Q_PLUGIN_CLASS="neutron.plugins.midonet.plugin.MidonetPluginV2" |
| 27 | } |
| 28 | |
| 29 | function neutron_plugin_configure_debug_command() { |
| 30 | : |
| 31 | } |
| 32 | |
| 33 | function neutron_plugin_configure_dhcp_agent() { |
Ryu Ishimoto | 35f0966 | 2013-08-27 18:32:00 +0900 | [diff] [blame] | 34 | DHCP_DRIVER=${DHCP_DRIVER:-"neutron.plugins.midonet.agent.midonet_driver.DhcpNoOpDriver"} |
| 35 | DHCP_INTERFACE_DRIVER=${DHCP_INTEFACE_DRIVER:-"neutron.plugins.midonet.agent.midonet_driver.MidonetInterfaceDriver"} |
| 36 | iniset $Q_DHCP_CONF_FILE DEFAULT dhcp_driver $DHCP_DRIVER |
| 37 | iniset $Q_DHCP_CONF_FILE DEFAULT interface_driver $DHCP_INTERFACE_DRIVER |
| 38 | iniset $Q_DHCP_CONF_FILE DEFAULT use_namespaces True |
| 39 | iniset $Q_DHCP_CONF_FILE DEFAULT enable_isolated_metadata True |
av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | function neutron_plugin_configure_l3_agent() { |
| 43 | die $LINENO "q-l3 must not be executed with MidoNet plugin!" |
| 44 | } |
| 45 | |
| 46 | function neutron_plugin_configure_plugin_agent() { |
| 47 | die $LINENO "q-agt must not be executed with MidoNet plugin!" |
| 48 | } |
| 49 | |
| 50 | function neutron_plugin_configure_service() { |
| 51 | if [[ "$MIDONET_API_URI" != "" ]]; then |
| 52 | iniset /$Q_PLUGIN_CONF_FILE MIDONET midonet_uri $MIDONET_API_URI |
| 53 | fi |
| 54 | if [[ "$MIDONET_USERNAME" != "" ]]; then |
| 55 | iniset /$Q_PLUGIN_CONF_FILE MIDONET username $MIDONET_USERNAME |
| 56 | fi |
| 57 | if [[ "$MIDONET_PASSWORD" != "" ]]; then |
| 58 | iniset /$Q_PLUGIN_CONF_FILE MIDONET password $MIDONET_PASSWORD |
| 59 | fi |
| 60 | if [[ "$MIDONET_PROJECT_ID" != "" ]]; then |
| 61 | iniset /$Q_PLUGIN_CONF_FILE MIDONET project_id $MIDONET_PROJECT_ID |
| 62 | fi |
| 63 | if [[ "$MIDONET_PROVIDER_ROUTER_ID" != "" ]]; then |
| 64 | iniset /$Q_PLUGIN_CONF_FILE MIDONET provider_router_id $MIDONET_PROVIDER_ROUTER_ID |
| 65 | fi |
av-mido | 2c3428b | 2013-07-11 14:59:00 +0900 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | function neutron_plugin_setup_interface_driver() { |
| 69 | # May change in the future |
| 70 | : |
| 71 | } |
| 72 | |
| 73 | function has_neutron_plugin_security_group() { |
| 74 | # 0 means True here |
| 75 | return 0 |
| 76 | } |
| 77 | |
| 78 | function neutron_plugin_check_adv_test_requirements() { |
| 79 | # 0 means True here |
| 80 | return 1 |
| 81 | } |
| 82 | |
| 83 | # Restore xtrace |
| 84 | $MY_XTRACE |