summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Kunz <georg.kunz@ericsson.com>2016-07-12 15:50:32 +0200
committerGerrit Code Review <gerrit@172.30.200.206>2016-07-14 15:11:20 +0000
commitb71d64b9375bea76cc07b4cb24d22b94a9bc9da0 (patch)
tree7f21a0b4d9d06d7939ea8ffdf142a67bfc9d207f
parent44e1e451cfe474e628bba4c470c54c2de33e5732 (diff)
Renamed and extended port abstraction model
The former port abstraction use case has been rename (again) to better highlight that it represents a design pattern for APIs and data models. In line with this, the text has been extended. Change-Id: I49c3f153dc7b75b000acacd8436b41d9d1219e2a Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
-rw-r--r--docs/requirements/references.rst7
-rw-r--r--docs/requirements/use_cases.rst2
-rw-r--r--docs/requirements/use_cases/service-binding-pattern.rst (renamed from docs/requirements/use_cases/port_abstraction.rst)75
3 files changed, 72 insertions, 12 deletions
diff --git a/docs/requirements/references.rst b/docs/requirements/references.rst
index 7c94e71..45759db 100644
--- a/docs/requirements/references.rst
+++ b/docs/requirements/references.rst
@@ -5,10 +5,11 @@
.. ==========
.. [BGPVPN] http://docs.openstack.org/developer/networking-bgpvpn/
-.. [NETWORKING-SFC] https://wiki.openstack.org/wiki/Neutron/ServiceInsertionAndChaining
.. [MULTISITE] https://wiki.opnfv.org/display/multisite/Multisite
-.. [TRICICLE] https://wiki.openstack.org/wiki/Tricircle#Requirements
+.. [NETWORKING-SFC] https://wiki.openstack.org/wiki/Neutron/ServiceInsertionAndChaining
+.. [NEUTRON-ROUTED-NETWORKS] https://specs.openstack.org/openstack/neutron-specs/specs/newton/routed-networks.html
.. [OS-NETWORKING-GUIDE-ML2] http://docs.openstack.org/mitaka/networking-guide/config-ml2-plug-in.html
.. [RFC4364] http://tools.ietf.org/html/rfc4364
.. [RFC7432] https://tools.ietf.org/html/rfc7432
-.. [NEUTRON-ROUTED-NETWORKS] https://specs.openstack.org/openstack/neutron-specs/specs/newton/routed-networks.html
+.. [TRICICLE] https://wiki.openstack.org/wiki/Tricircle#Requirements
+.. [VLAN-AWARE-VMs] https://blueprints.launchpad.net/neutron/+spec/vlan-aware-vms
diff --git a/docs/requirements/use_cases.rst b/docs/requirements/use_cases.rst
index a39e6f0..0248b13 100644
--- a/docs/requirements/use_cases.rst
+++ b/docs/requirements/use_cases.rst
@@ -8,6 +8,6 @@ The following sections address networking use cases that have been identified to
.. toctree::
use_cases/l3vpn.rst
- use_cases/port_abstraction.rst
+ use_cases/service-binding-pattern.rst
use_cases/programmable_provisioning.rst
use_cases/georedundancy.rst
diff --git a/docs/requirements/use_cases/port_abstraction.rst b/docs/requirements/use_cases/service-binding-pattern.rst
index 8f6e791..5b288bd 100644
--- a/docs/requirements/use_cases/port_abstraction.rst
+++ b/docs/requirements/use_cases/service-binding-pattern.rst
@@ -3,8 +3,8 @@
.. (c) Georg Kunz
-Port Abstraction
-----------------
+Service Binding Design Pattern
+------------------------------
Description
^^^^^^^^^^^
@@ -49,7 +49,13 @@ Requirements
Data model
""""""""""
-The envisioned data model of the port abstraction model is as follows:
+This section describes a general concept for a data model and a corresponding
+API. It is not intended that these entities are to be implemented exactly as
+described. Instead, they are meant to show a design pattern for future network
+service models and their corresponding APIs. For example, the "service" entity
+should hold all required attributes for a specific service, for instance a given
+L3VPN service. Hence, there would be no entity "service" but rather "L3VPN".
+
* ``instance-port``
@@ -63,7 +69,7 @@ The envisioned data model of the port abstraction model is as follows:
* ``interface``
An interface object is a logical abstraction of an instance-port. It allows to
- build hierachies of interfaces by means of a reference to a parent interface.
+ build hierarchies of interfaces by means of a reference to a parent interface.
Each interface represents a subset of the packets traversing a given port or
parent interface after applying a layer 2 segmentation mechanism specific to the
interface type.
@@ -98,7 +104,10 @@ The envisioned data model of the port abstraction model is as follows:
Northbound API
""""""""""""""
-The API for manipulating the data model is as follows:
+An exemplary API for manipulating the data model is described below. As for the
+data model, this API is not intended to be a concrete API, but rather an example
+for a design pattern that clearly separates ports from services and service
+bindings.
* ``instance-port-{create,delete} <name>``
@@ -134,7 +143,57 @@ The compute service needs to be enabled to consume instance ports instead of
classic Neutron ports.
-Implementation Proposal
-^^^^^^^^^^^^^^^^^^^^^^^
+Current Implementation
+^^^^^^^^^^^^^^^^^^^^^^
+
+The core Neutron API [**describe what is meant by that**] does not follow the
+service binding design pattern. For example, a port has to exist in a Neutron
+network - specifically it has to be created for a particular Neutron network. It
+is not possible to create just a port and assign it to a network later on as
+needed. As a result, a port cannot be moved from one network to another, for
+instance.
+
+Regarding the shared service function use case outlined above, there is an
+ongoing activity in Neutron [VLAN-AWARE-VMs]_. The solution proposed by this
+activity allows for creating a trunk-port and multiple sub-ports per Neutron
+port which can be bound to multiple networks (one network per sub-port). This
+allows for binding a single VNIC to multiple networks and allow the
+corresponding VMs to handle the network segmentation (VLAN tagged traffic)
+itself. While this is a step in the direction of binding multiple services
+(networks) to a port, it is limited by the fundamental assumption of Neutron
+that a port has to exist on a given network.
+
+There are extensions of Neutron that follow the service binding design pattern
+more closely. An example is the BGPVPN project. A rough mapping of the service
+binding design pattern to the data model of the BGPVPN project is as follows:
+
+* instance-port -> Neutron port
+
+* service -> VPN
+
+* service-port -> network association
+
+This example shows that extensions of Neutron can in fact follow the described
+design pattern in their respective data model and APIs.
+
+
+
+Conclusions
+^^^^^^^^^^^
+
+In conclusion, the design decisions taken for the core Neutron API and data
+model do not follow the service binding model. As a result, it is hard to
+implement certain use cases which rely on a flexible binding of services to
+ports. Due to the backwards compatibility to the large amount of existing
+Neutron code, it is unlikely that the core Neutron API will adapt to this design
+pattern.
+
+New extension to Neutron however are relatively free to choose their data model
+and API - within the architectural boundaries of Neutron of course. In order to
+provide the flexibility needed, extensions shall aim for following the service
+binding design pattern if possible.
+
+For the same reason, new networking frameworks complementing Neutron, such as
+Gluon, shall follow this design pattern and create the foundation for
+implementing networking services accordingly.
-TBD