20
How to write a Neutron Plugin (if you really need to) Salvatore Orlando Armando Migliaccio

How to write a Neutron Plugin - if you really need to

Embed Size (px)

DESCRIPTION

Slides for the talk from Salvatore Orlando and Armando Migliaccio at the Openstack Summit - Fall 2013 in Hong Kong Talk abstract: http://openstacksummitnovember2013.sched.org/event/c6478ecf54d639de3b8b9958bfe9d450#.UnLEI5ROpU0

Citation preview

Page 1: How to write a Neutron Plugin - if you really need to

How to write a Neutron Plugin(if you really need to)

Salvatore OrlandoArmando Migliaccio

Page 2: How to write a Neutron Plugin - if you really need to

Who are these guys talking to us?• Salvatore (the fat one)

– Core Openstack Neutron developer– Breaking Openstack since Cactus– Known by @taturiello on twitter and salv-orlando on IRC

• Armando (the fit one)– Core Openstack Neutron developer– Contributing code since Bexar– Fixes Salvatore’s code– Know by @armandomi2001 on twitter and armax on IRC

• They are both employed by VMware and happily (w)hack neutron code on a daily basis

Page 3: How to write a Neutron Plugin - if you really need to

Summary

• Part I: What is a Neutron plugin? Do you really need a new one?

• Part II: Design choices when writing a Neutron plugin

• Part III: Writing your first Neutron pluginWith code samples!!!

Page 4: How to write a Neutron Plugin - if you really need to

Part I

The world of Neutron plugins

Page 5: How to write a Neutron Plugin - if you really need to

A Neutron plugin in a Nutshell

• Implements one or more “plugin interfaces”• Receives requests from the API layer

• Should NOT deal with authN/authZ

API

Plugin

Agents, physical/virtual

appliances, controllers, etc.

AuthNAuthZ

ValidationDispatch

API request

Page 6: How to write a Neutron Plugin - if you really need to

Core and service plugins

– Core: Implements the “core” Neutron API(L2 networking + IPAM)

– Service: plugin provides additional network services (Eg.: load balancing, firewall, VPN)• network services can also be provided by core plugin by

implementing the relevant extensions

API

Plugins

Core L3 FW

Core Plugin

Core L3 FW

Core Plugin

Core L3 FW

Core plugin

L3 plugin

FWplugin

FWplugin

Page 7: How to write a Neutron Plugin - if you really need to

Plugins with drivers

• Can execute a given request on different backends; actual execution is delegated to a driver– ML2

• Openvswitch, linuxbridge, hyper-V, tail-F NCS, Arista, …

– Load Balancing reference plugin– Firewall reference plugin– (soon) VPN reference plugin

• Implementing a driver is much easier than implementing a whole plugin!

Page 8: How to write a Neutron Plugin - if you really need to

Making the right decision

• Implementing a driver vs.a new plugin

• Adding a new service as anextension vs. a service plugin

Tradeoff:– Flexibility and interoperability vs simplicity

Page 9: How to write a Neutron Plugin - if you really need to

Available options

• Integrate some kind of network device into Neutron– Driver (for ML2, LB, FW, etc.)

• Add a feature that applies to existing API resources– API extension and plugin support

• Provide a new network service, “orthogonal feature”– New service plugin

• New integrated solution or new paradigm– New core plugin

Page 10: How to write a Neutron Plugin - if you really need to

Part IIConsiderations for writing a

new Neutron plugin

Page 11: How to write a Neutron Plugin - if you really need to

Planning for a new neutron plugin• Which extensions support– At least L3 and security

groups for Nova integration

• Reusing Neutron’sopen source components– DHCP agent, L3 agent, etc.

Page 12: How to write a Neutron Plugin - if you really need to

Developing a new Neutron plugin

• Backend synchronization (pull vs push)

• Scalability• High Availability• Fault tolerance• Unit and functional tests• Extensions– API and DB extensions

Page 13: How to write a Neutron Plugin - if you really need to

Contributing a new Neutron plugin

• Meet certain standards– Provide thorough unit test

coverage– Provide documentation

• And then more documentation

– Think Devstack– Tempest– Think Smokestack

Add your own funny image here

https://wiki.openstack.org/wiki/NeutronDevelopment#Developing_a_Neutron_Plugin

Page 14: How to write a Neutron Plugin - if you really need to

Part III

Implementing a new Neutron plugin

Page 15: How to write a Neutron Plugin - if you really need to

Introducing the HDN plugin

• HDN: Human Defined Networking• Rediscover the human face of IT– REST API requests are transformed into emails

sent to the networking guy in your IT department– Asynchronous, eventually consistent, request

processing– Karma-based request prioritization; the nicer you

are to the IT guy, the sooner your requests will be processed

Page 16: How to write a Neutron Plugin - if you really need to

The HDN plugin - architecture

API request

Neutron REST Interface

Message bus (email)#TODO: Phone, Fax

Human-powered plugin engine

Page 17: How to write a Neutron Plugin - if you really need to

Implementing the plugin

• Core API– Support for networks, ports, and subnet

• Supported extensions– L3: Support for routers and floating IPs– Admin extension for notifying request completion

• Other neutron extensions– Outside scope… at the end of the day you can

always pick up the phone and call your IT guy!

Page 18: How to write a Neutron Plugin - if you really need to

Getting our hands dirty

• Sources for the HDN plugin are available on github– https://github.com/salv-orlando/hdn– tested with gmail, should work with all SMTP

servers

Page 19: How to write a Neutron Plugin - if you really need to

Summary

Page 20: How to write a Neutron Plugin - if you really need to

• Consider all your alternatives before making a choice on whether developing a plugin, an extension or a driver

• When developing a new plugin check if and how it should integrate with the various neutron agents

• Make your plugin verifiable through unit and integration testing

• Open source all the things, but document them as well

• Who needs SDN when you have HDN???