RETIRED, Fuel plugin for OpenDaylight integration
Go to file
Igor Zinovik 9a2bf3a825 Add plugin documentation
* add documentation in .rst format, using sphinx as documentation
  builder
* add requirements.txt with needed python modules for documentation
* add Makefile that allow to build documentation
* add entry got `.gitignore' file to ignore doc/build directory

Change-Id: Ie484a9cb0f8a49daa00b450e9e6e51a7ed306ecb
2017-02-20 17:37:37 +03:00
deployment_scripts/puppet Mend standalone mode condition 2017-02-07 12:19:13 +04:00
doc Add plugin documentation 2017-02-20 17:37:37 +03:00
repositories Import code from personal repo 2015-06-25 09:31:50 +02:00
.gitignore Add plugin documentation 2017-02-20 17:37:37 +03:00
.gitreview Easier way to define karaf features 2015-10-22 17:22:18 +02:00
CHANGELOG.md Support MOS 8.0. 2016-01-19 00:53:39 +01:00
LICENSE Support MOS 8.0. 2016-01-19 00:53:39 +01:00
README.md Fuel 10 uplift 2016-12-06 12:15:58 +01:00
components.yaml Switch to fuel plugin framework v4.0 2016-04-15 15:21:55 +02:00
deployment_tasks.yaml Add support for Fuel 10 2017-01-20 18:42:04 +03:00
environment_config.yaml Merge "Build with ODL 5.2.0 & enforce it as a requirement for BGPVPN" 2017-01-25 12:49:51 +00:00
metadata.yaml Fuel 10 uplift 2016-12-06 12:15:58 +01:00
node_roles.yaml Support for MOS 7.0 2015-11-09 12:50:40 +00:00
pre_build_hook Build with ODL 5.2.0 & enforce it as a requirement for BGPVPN 2017-01-19 14:58:21 +02:00
tasks.yaml Switch to fuel plugin framework v4.0 2016-04-15 15:21:55 +02:00
volumes.yaml Support for MOS 7.0 2015-11-09 12:50:40 +00:00

README.md

OpenDaylight Plugin for Fuel

OpenDaylight plugin

Overview

This plugin will install OpenDaylight controller and set it as manager for OVS using ovsdb plugin.

Requirements

Requirement Version/Comment
Mirantis OpenStack compatibility 10.0

Limitations

  • HA for ODL controller is not implemented yet.

Installation Guide

OpenDaylight plugin installation

  1. Clone the fuel-plugin-opendaylight repo from github:

     git clone https://github.com/openstack/fuel-plugin-opendaylight
    
  2. Install the Fuel Plugin Builder:

     pip install fuel-plugin-builder
    
  3. Build OpenDaylight Fuel plugin:

     fpb --build fuel-plugin-opendaylight/
    
  4. The opendaylight-[x.x.x].rpm plugin package will be created in the plugin folder.

  5. Move this file to the Fuel Master node with secure copy (scp):

     scp opendaylight-[x.x.x].rpm root@<the_Fuel_Master_node_IP address>:/tmp
    
  6. While logged in Fuel Master install the OpenDaylight plugin:

     fuel plugins --install opendaylight-[x.x.x].rpm
    
  7. Check if the plugin was installed successfully:

     fuel plugins
    
     id | name         | version | package_version
     ---|--------------|---------|----------------
     1  | opendaylight | 0.5.2   | 2.0.0
    
  8. Plugin is ready to use and can be enabled on the Settings tab of the Fuel web UI.

User Guide

OpenDaylight plugin configuration

  1. Create a new environment with the Fuel UI wizard.
  2. Click on the Settings tab of the Fuel web UI.
  3. Select "OpenDaylight plugin" section in "Other" tab.
  4. Tick the checkbox and click "Save Settings" button.
  5. Assign role OPENDAYLIGHT to one of the node.

Build options

It is possible to modify process of building plugin by setting environment variables. Look into pre_build_hook file for more details. For example include 2 versions of opendaylight controller in plugin:

    ODL_VERSIONS="5.1.0.1 5.0.0.1" fpb --build fuel-plugin-opendaylight/

Testing

OpenDaylight files are stored on node with 'OpenDaylight' role assigned inside /opt/opendaylight directory.

To log in to OpenDayligt shell run /opt/opendaylight/bin/client -u karaf

Known issues

  • VM live migration not supported by ODL ovsdb
  • ODL ignore MTU size from Neutron and create tap devices for VMs with MTU 1500. Things like Jumbo frames will not work on VMs side.

Development

Plugin is developed as a part of FUEL@OPNFV project.

If you have questions/suggestions you can find us on #opnfv-fuel freenode IRC channel.

If you prefer email The OpenStack Development Mailing List openstack-dev@lists.openstack.org or OPNFV Technical Discussion opnfv-tech-discuss@lists.opnfv.org can be used. Subject should be prefixed by [fuel][plugins][odl].

Reporting Bugs

Bugs should be filled on the Launchpad fuel-plugin-opendaylight project.

Contributing

If you would like to contribute to the development of this Fuel plugin you must follow the OpenStack development workflow.

Patch reviews take place on the OpenStack gerrit system.

Contributors