The pbr 0.11.0 release has shown that having multiple trees in a repo each with their on version that is different to the git history is really not going to work. This change means that the version will be derived from git history, which will still be useful for operators managing what version of a plugin they have installed. Running sudo python setup.py install (as documented) is known to work with the latest pbr. Change-Id: I716a5374bb283d11e26459b5866a0437ab6fe0dd Closes-Bug: #1450733
ExtraRoute plugin for OpenStack Heat
This plugin enables using ExtraRoute as a resource in a Heat template.
This resource allows assigning extra routes to Neutron routers via Heat templates.
NOTE: Implementing ExtraRoute in the main heat tree is under discussion in the heat community.
This plugin has been implemented in contrib to provide access to the functionality while the discussion takes place, as some users have an immediate requirement for it. It may be moved to the main heat tree in due-course, depending on the outcome of the community discussion.
1. Install the ExtraRoute plugin in Heat
NOTE: These instructions assume the value of heat.conf plugin_dirs includes the default directory /usr/lib/heat.
To install the plugin, from this directory run: sudo python ./setup.py install
2. Restart heat
Only the process "heat-engine" needs to be restarted to load the newly installed plugin.
3. Example of ExtraRoute
"router_extraroute": { "Type": "OS::Neutron::ExtraRoute", "Properties": { "router_id": { "Ref" : "router" }, "destination": "172.16.0.0/24", "nexthop": "192.168.0.254" } }