gluon/gluon/shim
zhaojingjing0067370 83ed959007 Function delete_port() takes exactly 3 arguments (4 given) in handle_port_delete()
When deleting net-l3vpn port, TypeError: delete_port() takes exactly 3 arguments (4 given).
delete_port() is called in File "/usr/lib/python2.7/site-packages/gluon/shim/api_models/net_l3vpn.py",
line 229, in handle_port_delete self.backend.delete_port(key, self.model, deleted_obj).

Change-Id: I1cb080104cfa1decdc3b8f45d102636d3d1e6af7
2017-08-24 14:48:01 +08:00
..
api_models Function delete_port() takes exactly 3 arguments (4 given) in handle_port_delete() 2017-08-24 14:48:01 +08:00
backends Function delete_port() takes exactly 3 arguments (4 given) in handle_port_delete() 2017-08-24 14:48:01 +08:00
README.txt Update code to comply with Gluon API Spec 2017-01-22 10:39:27 -06:00
__init__.py Adding ODL backend to generic shim layer framework 2017-01-10 10:04:24 +01:00
base.py Update code to comply with Gluon API Spec 2017-01-22 10:39:27 -06:00
main.py Update code to comply with Gluon API Spec 2017-01-22 10:39:27 -06:00
model.py Update code to comply with Gluon API Spec 2017-01-22 10:39:27 -06:00
utils.py Adding ODL backend to generic shim layer framework 2017-01-10 10:04:24 +01:00

README.txt

OVERVIEW:

This directory contains an example shim layer server.  A dummy backend implementation
is provided to show how changes in the net-l3vpn model can be turned into events to
configure the underlying SDN controller.

The shim layer server recursively watches for changes to keys in the /proton directory.
It will receive changes to keys in the following directories:

/proton/net-l3vpn/Port
/proton/net-l3vpn/Interface
/proton/net-l3vpn/VpnBinding
/proton/net-l3vpn/VpnService
/proton/net-l3vpn/VpnAfConfig

NOTE: This is a change from the previous implementation where it watched for changes in
the /net-l3vpn/proton directory.

When changes are detected in etcd, the net_l3vpn api model is called to process
the object change.  The net_l3vpn class will maintain an in-memory model of the etcd
database.  As changes are made to the model, callbacks will be made to the registered
backend to handle the following operations:

bind_port
unbind_port
modify_port
delete_port
modify_service
delete_service
modify_service_binding
delete_service_binding

The dummy_net_l3vpn class just prints out logging information when the callbacks
are called.  The idea is that a vendor could copy/paste the dummy_net_l3vpn class and
add the code to configure their SDN controller based on the callback and model data.

The bind_port() callback shows how to pass back vif_type and vif_details to be updated in
the Port instance.  This is done by the following protocol:

The bind_port() callback will return a dict containing the vif_tpe and vif_details.

For example: {'vif_type': 'ovs', 'vif_details': {'port_filter': False, 'bridge_name': 'br-gluon'}}

The net_l3vpn class (which maintains the model and invokes the callbacks) will create an entry
in etcd to provide this information back to the proton-server.  It will also create a field
for the controller name that handled the bind request.

The etcd key will be of the form:

/controller/net-l3vpn/Port/<uuid>

The data will look like:

{ 'vif_type': 'ovs',
  'vif_details': {'port_filter': False, 'bridge_name': 'br-gluon'},
  'controller': 'SimServer'
}

The proton-server will watch on this key for up to 8 seconds after the Port object is updated for
a bind request.  If it sees that the key's value has been changed, it will update the Port
database object with the vif_type and vif_details. So, when Nova subsequently retrieves the Port
information  during the VM creation it will have the correct vif_type and vif_details to give to
the VIF driver.


INSTALLATION:

The proton-shim-server script is installed in /usr/local/bin when the gluon package is installed.
The only thing that has to be configured is the host_list.  The shim server will only
respond to bind requests for a host_id that is in this list.  Look at the proton-shim.conf file
in the etc directory for an example.  You should query nova for the hypervisor list and populate
the host_list with the proper values or use * as a wildcard matching all hosts.

To run the shim server:

/usr/local/bin/proton-shim-server --config-file=/<path>/proton-shim.conf

Logging goes to stdout by default.

Currently, the OpenDaylight backend is selected by default in the code.  To select a different
backend, this line in main.py needs to modified:

 103: backend = OdlNetL3VPN()

A configuration option for selecting a particular backend is future work.


OPENDAYLIGHT BACKEND:

There a few OpenDaylight specific configuration options in the proton-shim.conf file in a dedicated
"shim_odl" section.  The odl_host option typically always needs to be changed whereas the remaining
configuration options use defaults that should work out-of-the-box.

In order to use this backend and the L3VPN service, OpenDaylight should be up and running and the
features "odl-netvirt-openstack" and "odl-netvirt-ui" must be installed.