<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-2022-jp">
</head>
<body bgcolor="#FFFFFF">
<div>From a Rackspace perspective, we definitely want the network service to support a L2 service model.  I think VLANs should be the default out of the box option but other more service provider scale L2 alternatives should also be supported.  Let's just decide
 that L2 is in.</div>
<div><br>
</div>
<div>Other thoughts?</div>
<div><br>
</div>
<div>Erik<br>
<br>
Sent from my iPhone</div>
<div><br>
On Feb 21, 2011, at 6:06 AM, "Ishimoto, Ryu" <<a href="mailto:ryu@midokura.jp">ryu@midokura.jp</a>> wrote:<br>
<br>
</div>
<div></div>
<blockquote type="cite">
<div>
<div><br>
</div>
<div>It seems that there must be a decision made to what extent should an OpenStack 'network service' is expected to support.  Should it support L2-only networks?  Or should it assume ONLY the IP-based network services to be available?   Looking at <a href="http://wiki.openstack.org/NetworkService"></a><a href="http://wiki.openstack.org/NetworkService">http://wiki.openstack.org/NetworkService</a>,
 there doesn't seem to be any demand for L2 networks, but should it assume there won't be any in the future?</div>
<div><br>
</div>
<div>As Romain and Hisaharu-san suggested, if OpenStack is to support L2 networks, then it would make sense to simply have the Virtual NICs(network interfaces associated with VMs) and their mapping to Virtual Ports(logical ports to plug VNICs into for network
 connectivity) be generic.  If OpenStack is going to support ONLY IP-based networks, and assumes that every VNIC is assigned an IP, then the generic API should be defined accordingly.  Either way, it would be very helpful to decide on this soon.  </div>
<div><br>
</div>
<div>What do you think?</div>
<div><br>
</div>
<div>Thanks,</div>
<div>Ryu</div>
<div><br>
</div>
<div><br>
<div class="gmail_quote">2011/2/17 $B@P0f!!5W<#(B <span dir="ltr"><<a href="mailto:ishii.hisaharu@lab.ntt.co.jp"></a><a href="mailto:ishii.hisaharu@lab.ntt.co.jp">ishii.hisaharu@lab.ntt.co.jp</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Romain,<br>
<br>
Please call me hisaharu :)<br>
<br>
I have read your proposal and felt the below point is important.<br>
<div class="im">>     - create_network(address_prefix): network_id<br>
</div>
<div class="im">>         This cannot be part of the API because it violates criterion 4): a<br>
> network service plugin may not support NATted IPv4 networks, for instance a<br>
> plugin that supports only pure L2 private Ethernet networks to interconnect<br>
> VMs.<br>
<br>
</div>
On the other hand this was said in the document Erik referred.<br>
> Implementors are only required to implement the core API.<br>
<br>
Should we allow a network plugin which has no functions to allocate IP<br>
addresses to VMs but provides L2 reachability to users?<br>
If so, the core API should have no APIs related to IP address.<br>
<br>
Thanks,<br>
Hisaharu Ishii<br>
<div>
<div></div>
<div class="h5"><br>
<br>
(2011/02/16 10:04), Romain Lenglet wrote:<br>
> Ishii-san,<br>
><br>
> Re-reading the proposal you sent on Feb. 2nd, I realized that you didn't<br>
> separate between generic operations and plugin-specific operations. I<br>
> thought you did, sorry. I propose to rewrite your spec into one API and two<br>
> (optional) extensions:<br>
><br>
> - network service API (plugin-agnostic):<br>
>      - list_vnics(): [vnic_id]<br>
>          Return the list of vnic_id created by the tenant (project), where<br>
> vnic_id is the ID of a VNIC.<br>
>      - destroy_vnic(vnic_id)<br>
>          Remove a VNIC from its VM, given its ID, and destroy it.<br>
>      - plug(vnic_id, port_id)<br>
>          Plug the VNIC with ID vnic_id into the port with ID port_id, both<br>
> managed by this network service.<br>
>      - unplug(vnic_id)<br>
>          Unplug the VNIC from its port, previously plugged by calling plug().<br>
>      - list_ports(): [port_id]<br>
>          Return the list of IDs of ports created by the tenant (project).<br>
>      - destroy_port(port_id)<br>
>          Destroy port with ID port_id.<br>
><br>
> - Ethernet VNIC API extension:<br>
>      - create_vnic([mac_address]): vnid_id<br>
>          Create a VNIC and return the ID of the created VNIC. Associate the<br>
> given MAC address with the VNIC, or associate a random unique MAC with it if<br>
> not given.<br>
>          This cannot be part of the API because it violates criterion 4): we<br>
> plan to implement non-Ethernet virtual devices to connect VMs, so this<br>
> operation cannot be implemented in that specific plugin.<br>
><br>
> - NATed IPv4 network API extension:<br>
>      - create_network(address_prefix): network_id<br>
>          Create a new logical network with floating addresses in the given<br>
> address range, and return the network ID.<br>
>          This cannot be part of the API because it violates criterion 4): a<br>
> network service plugin may not support NATted IPv4 networks, for instance a<br>
> plugin that supports only pure L2 private Ethernet networks to interconnect<br>
> VMs. Moreover, the notion of "logical network" doesn't make sense in all<br>
> cases: one can imagine a network plugin where every port is implemented by a<br>
> separate Layer-2 OpenVPN connection to a tenant's private physical Ethernet<br>
> network, in which case there is no notion of "logical network" (or it would<br>
> require users to create a separate logical network for every port / VNIC,<br>
> which would be very inconvenient).<br>
>      - list_networks(): [network_id]<br>
>          Return the list of IDs of logical networks created by the tenant<br>
> (project).<br>
>          This cannot be part of the API because it violates criterion 4):<br>
> idem, the notion of "logical network" is not plugin-agnostic.<br>
>      - destroy_network(network_id)<br>
>          Destroy the logical network with ID network_id.<br>
>          This cannot be part of the API because it violates criterion 4):<br>
> idem, the notion of "logical network" is not plugin-agnostic.<br>
>      - create_port(network_id): port_id<br>
>          Create a port in the logical network with ID network_id, associate a<br>
> floating address to it, and return the port's ID.<br>
>          This cannot be part of the API because it violates criterion 4):<br>
> idem, the notion of "logical network" is not plugin-agnostic.<br>
><br>
> What do you think of that new version of the API spec?<br>
> Do you agree with the split into API+extensions?<br>
><br>
> Regards,<br>
> --<br>
> Romain Lenglet<br>
><br>
> 2011/2/16 Romain Lenglet<<a href="mailto:romain@midokura.jp"></a><a href="mailto:romain@midokura.jp">romain@midokura.jp</a>><br>
><br>
>> Hi Erik,<br>
>><br>
>> Thanks for your comments.<br>
>><br>
>> There doesn't seem to be a consensus to use "core API + extensions" vs.<br>
>> multiple APIs?<br>
>> Anyway, I don't see any issues with specifying a "core API" for network<br>
>> services, and a "core API" for network agents, corresponding exactly to<br>
>> NTT's Ishii-san's "generic APIs", and specifying all the non-generic,<br>
>> plugin-specific operations in extensions.<br>
>> If the norm becomes to have a core API + extensions, then the network<br>
>> service spec will be modified to follow that norm. No problem.<br>
>><br>
>> The important point we need to agree on is what goes into the API, and what<br>
>> goes into extensions.<br>
>><br>
>> Let me rephrase the criteria that I proposed, using the "API" and<br>
>> "extensions" terms:<br>
>> 1) any operation called by the compute service (Nova) directly MUST be<br>
>> specified in the API;<br>
>> 2) any operation called by users / admin tools MAY be specified in the API,<br>
>> but not necessarily;<br>
>> 3) any operation specified in the API MUST be independent from details of<br>
>> specific network service plugins (e.g. specific network models, specific<br>
>> supported protocols, etc.), i.e. that operation can be supported by every<br>
>> network service plugin imaginable, which means that:<br>
>> 4) any operation that cannot be implemented by all plugins MUST be<br>
>> specified in an extension, i.e. if one comes up with a counter-example<br>
>> plugin that cannot implement that operation, then the operation cannot be<br>
>> specified in the API and MUST be specified in an extension.<br>
>><br>
>> Do we agree on those criteria?<br>
>><br>
>> I think Ishii-san's proposal meets those criteria.<br>
>> Do you see any issues with Ishii-san's proposal regarding the split between<br>
>> core operations and extension operations?<br>
>> If you think that some operations that are currently defined as extensions<br>
>> in Ishii-san's proposal should be in the API, I'll be happy to try to give<br>
>> counter-examples of network service plugins that can't implement them. :)<br>
>><br>
>> Regards,<br>
>> --<br>
>> Romain Lenglet<br>
>><br>
>><br>
>> 2011/2/16 Erik Carlin<<a href="mailto:erik.carlin@rackspace.com"></a><a href="mailto:erik.carlin@rackspace.com">erik.carlin@rackspace.com</a>><br>
>><br>
>>   My understanding is that we want a single, canonical OS network service<br>
>>> API.  That API can then be implemented by different "service engines" on<br>
>>> that back end via a plug-in/driver model.  The way additional features are<br>
>>> added to the canonical API that may not be core or for widespread adoption<br>
>>> (e.g. something vendor specific) is via extensions.  You can take a look at<br>
</div>
</div>
>>> the proposed OS compute API spec<<a href="http://wiki.openstack.org/OpenStackAPI_1-1" target="_blank"></a><a href="http://wiki.openstack.org/OpenStackAPI_1-1">http://wiki.openstack.org/OpenStackAPI_1-1</a>>to see how extensions are implemented there.  Also,
 Jorge Williams has done<br>
>>> a good write up of the concept here<<a href="http://wiki.openstack.org/JorgeWilliams?action=AttachFile&do=view&target=Extensions.pdf" target="_blank"></a><a href="http://wiki.openstack.org/JorgeWilliams?action=AttachFile&do=view&target=Extensions.pdf">http://wiki.openstack.org/JorgeWilliams?action=AttachFile&do=view&target=Extensions.pdf</a>><br>
<div>
<div></div>
<div class="h5">>>> .<br>
>>><br>
>>>   Erik<br>
>>><br>
>>>    From: Romain Lenglet<<a href="mailto:romain@midokura.jp"></a><a href="mailto:romain@midokura.jp">romain@midokura.jp</a>><br>
>>> Date: Tue, 15 Feb 2011 17:03:57 +0900<br>
>>> To: $B@P0f(B $B5W<#(B<<a href="mailto:ishii.hisaharu@lab.ntt.co.jp"></a><a href="mailto:ishii.hisaharu@lab.ntt.co.jp">ishii.hisaharu@lab.ntt.co.jp</a>><br>
>>> Cc:<<a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a>><br>
>>><br>
>>> Subject: Re: [Openstack] Network Service for L2/L3 Network Infrastructure<br>
>>> blueprint<br>
>>><br>
>>>    Hi Ishii-san,<br>
>>><br>
>>> On Tuesday, February 15, 2011 at 16:28, $B@P0f(B $B5W<#(B wrote:<br>
>>><br>
>>>   Hello Hiroshi-san<br>
>>><br>
>>>>> Do you mean that the former API is an interface that is<br>
>>>>> defined in OpenStack project, and the latter API is<br>
>>>>> a vendor specific API?<br>
>>>> My understanding is that yes, that's what he means.<br>
>>><br>
>>> I also think so.<br>
>>><br>
>>> In addition, I feel it is issue that what network functions should be<br>
>>> defined as generic API, and what network functions should be defined as<br>
>>> plugin specific API.<br>
>>> How do you think ?<br>
>>><br>
>>> I propose to apply the following criteria to determine which operations<br>
>>> belong to the generic API:<br>
>>> - any operation called by the compute service (Nova) directly MUST belong<br>
>>> to the generic API;<br>
>>> - any operation called by users (REST API, etc.) MAY belong to the generic<br>
>>> API;<br>
>>> - any operation belonging to the generic API MUST be independent from<br>
>>> details of specific network service plugins (e.g. specific network models,<br>
>>> specific supported protocols, etc.), i.e. the operation can be supported by<br>
>>> every network service plugin imaginable, which means that if one can come up<br>
>>> with a counter-example plugin that cannot implement that operation, then the<br>
>>> operation cannot belong to the generic API.<br>
>>><br>
>>>   How about that?<br>
>>><br>
>>>   Regards,<br>
>>> --<br>
>>> Romain Lenglet<br>
>>><br>
>>><br>
>>><br>
>>> Thanks<br>
>>> Hisaharu Ishii<br>
>>><br>
>>><br>
>>> (2011/02/15 16:18), Romain Lenglet wrote:<br>
>>><br>
>>> Hi Hiroshi,<br>
>>> On Tuesday, February 15, 2011 at 15:47, Hiroshi DEMPO wrote:<br>
>>> Hello Hisaharu san<br>
>>><br>
>>><br>
>>> I am not sure about the differences between generic network API and<br>
>>> plugin X specific network service API.<br>
>>><br>
>>> Do you mean that the former API is an interface that is<br>
>>> defined in OpenStack project, and the latter API is<br>
>>> a vendor specific API?<br>
>>><br>
>>><br>
>>> My understanding is that yes, that's what he means.<br>
>>><br>
>>> --<br>
>>> Romain Lenglet<br>
>>><br>
>>><br>
>>><br>
>>> Thanks<br>
>>> Hiroshi<br>
>>><br>
>>>   -----Original Message-----<br>
>>> From: openstack-bounces+dem=<a href="http://ah.jp.nec.com" target="_blank"></a><a href="http://ah.jp.nec.com">ah.jp.nec.com</a>@<a href="http://lists.launchpad.net" target="_blank"></a><a href="http://lists.launchpad.net">lists.launchpad.net</a><br>
</div>
</div>
<div>
<div></div>
<div class="h5">>>> [mailto:<a href="mailto:openstack-bounces">openstack-bounces</a><openstack-bounces>+dem=<br>
>>> <a href="http://ah.jp.nec.com" target="_blank"></a><a href="http://ah.jp.nec.com">ah.jp.nec.com</a>@<a href="http://lists.launchpad.ne" target="_blank">lists.launchpad.ne</a><br>
>>> t] On Behalf Of $B@P0f(B $B5W<#(B<br>
>>> Sent: Thursday, February 10, 2011 8:48 PM<br>
>>> To: <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Subject: Re: [Openstack] Network Service for L2/L3 Network<br>
>>> Infrastructure blueprint<br>
>>><br>
>>> Hi, all<br>
>>><br>
>>> As we have said before, we have started designing and writing<br>
>>> POC codes of network service.<br>
>>><br>
>>>   - I know that there were several documents on the new network<br>
>>> service issue that were locally exchanged so far.<br>
>>> Why not collecting them into one place and share them<br>
>>><br>
>>> publicly?<br>
>>><br>
>>> Based on these documents, I created an image of<br>
>>> implementation (attached). And I propose the following set of<br>
>>> methods as the generic network service APIs.<br>
>>> - create_vnic(): vnic_id<br>
>>> Create a VNIC and return the ID of the created VNIC.<br>
>>> - list__vnics(vm_id): [vnic_id]<br>
>>> Return the list of vnic_id, where vnic_id is the ID of a VNIC.<br>
>>> - destroy_vnic(vnic_id)<br>
>>> Remove a VNIC from its VM, given its ID, and destroy it.<br>
>>> - plug(vnic_id, port_id)<br>
>>> Plug the VNIC with ID vnic_id into the port with ID<br>
>>> port_id managed by this network service.<br>
>>> - unplug(vnic_id)<br>
>>> Unplug the VNIC from its port, previously plugged by<br>
>>> calling plug().<br>
>>> - create_network(): network_id<br>
>>> Create a new logical network.<br>
>>> - list_networks(project_id): [network_id]<br>
>>> Return the list of logical networks available for<br>
>>> project with ID project_id.<br>
>>> - destroy_network(network_id)<br>
>>> Destroy the logical network with ID network_id.<br>
>>> - create_port(network_id): port_id<br>
>>> Create a port in the logical network with ID<br>
>>> network_id, and return the port's ID.<br>
>>> - list_ports(network_id): [port_id]<br>
>>> Return the list of IDs of ports in a network given its ID.<br>
>>> - destroy_port(port_id)<br>
>>> Destroy port with ID port_id.<br>
>>><br>
>>> This design is a first draft.<br>
>>> So we would appreciate it if you would give us some comments.<br>
>>><br>
>>> In parallel with it, we are writing POC codes and uploading<br>
>>> it to "lp:~ntt-pf-lab/nova/network-service".<br>
>>><br>
>>> Thanks,<br>
>>> Hisaharu Ishii<br>
>>><br>
>>><br>
>>> (2011/02/02 19:02), Koji IIDA wrote:<br>
>>><br>
>>> Hi, all<br>
>>><br>
>>><br>
>>> We, NTT PF Lab., also agree to discuss about network service at the<br>
>>> Diablo DS.<br>
>>><br>
>>> However, we would really like to include network service in<br>
>>><br>
>>> the Diablo<br>
>>><br>
>>> release because our customers strongly demand this feature. And we<br>
>>> think that it is quite important to merge new network<br>
>>><br>
>>> service to trunk<br>
>>><br>
>>> soon after Diablo DS so that every developer can contribute their<br>
>>> effort based on the new code.<br>
>>><br>
>>> We are planning to provide source code for network service<br>
>>><br>
>>> in a couple<br>
>>><br>
>>> of weeks. We would appreciate it if you would review it<br>
>>><br>
>>> and give us<br>
>>><br>
>>> some feedback before the next design summit.<br>
>>><br>
>>> Ewan, thanks for your making new entry at wiki page (*1).<br>
>>><br>
>>> We will also<br>
>>><br>
>>> post our comments soon.<br>
>>><br>
>>> (*1) <a href="http://wiki.openstack.org/NetworkService" target="_blank"></a><a href="http://wiki.openstack.org/NetworkService">http://wiki.openstack.org/NetworkService</a><br>
>>><br>
>>><br>
>>> Thanks,<br>
>>> Koji Iida<br>
>>><br>
>>><br>
>>> (2011/01/31 21:19), Ewan Mellor wrote:<br>
>>><br>
>>> I will collect the documents together as you suggest, and<br>
>>><br>
>>>   I agree that we need to get the requirements laid out again.<br>
>>><br>
>>><br>
>>> Please subscribe to the blueprint on Launchpad -- that way<br>
>>><br>
>>>   you will be notified of updates.<br>
>>><br>
>>><br>
>>> <a href="https://blueprints.launchpad.net/nova/+spec/bexar-network-service" target="_blank">
</a><a href="https://blueprints.launchpad.net/nova/+spec/bexar-network-service">https://blueprints.launchpad.net/nova/+spec/bexar-network-service</a><br>
>>><br>
>>> Thanks,<br>
>>><br>
>>> Ewan.<br>
>>><br>
>>>   -----Original Message-----<br>
>>> From: openstack-bounces+ewan.mellor=<a href="http://citrix.com" target="_blank"></a><a href="http://citrix.com">citrix.com</a>@<a href="http://lists.launchpad.net" target="_blank"></a><a href="http://lists.launchpad.net">lists.launchpad.net</a><br>
>>><br>
</div>
</div>
<div>
<div></div>
<div class="h5">>>>    [mailto:<a href="mailto:openstack-bounces">openstack-bounces</a><openstack-bounces>+ewan.mellor=<br>
>>> <a href="http://citrix.com" target="_blank"></a><a href="http://citrix.com">citrix.com</a>@<a href="http://lists.launchpad.net" target="_blank"></a><a href="http://lists.launchpad.net">lists.launchpad.net</a><br>
>>><br>
>>>   ]<br>
>>> On Behalf Of Masanori ITOH<br>
>>> Sent: 31 January 2011 10:31<br>
>>> To: <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Subject: Re: [Openstack] Network Service for L2/L3 Network<br>
>>> Infrastructure blueprint<br>
>>><br>
>>> Hello,<br>
>>><br>
>>> We, NTT DATA, also agree with majority of folks.<br>
>>> It's realistic shooting for the the Diablo time frame to have the<br>
>>> new network service.<br>
>>><br>
>>> Here are my suggestions:<br>
>>><br>
>>> - I know that there were several documents on the new network<br>
>>> service issue<br>
>>> that were locally exchanged so far.<br>
>>> Why not collecting them into one place and share them<br>
>>><br>
>>>   publicly?<br>
>>><br>
>>><br>
>>> - I know that the discussion went into a bit<br>
>>><br>
>>>   implementation details.<br>
>>><br>
>>>   But now, what about starting the discussion from the<br>
>>><br>
>>>   higher level<br>
>>><br>
>>>   design things (again)? Especially, from the<br>
>>><br>
>>>   requirements level.<br>
>>><br>
>>><br>
>>> Any thoughts?<br>
>>><br>
>>> Masanori<br>
>>><br>
>>><br>
>>> From: John Purrier<<a href="mailto:john@openstack.org"></a><a href="mailto:john@openstack.org">john@openstack.org</a>><br>
>>> Subject: Re: [Openstack] Network Service for L2/L3 Network<br>
>>> Infrastructure blueprint<br>
>>> Date: Sat, 29 Jan 2011 06:06:26 +0900<br>
>>><br>
>>>   You are correct, the networking service will be more<br>
>>><br>
>>>    complex than<br>
>>><br>
>>>    the<br>
>>><br>
>>> volume<br>
>>><br>
>>> service. The existing blueprint is pretty comprehensive,<br>
>>><br>
>>>    not only<br>
>>><br>
>>>    encompassing the functionality that exists in today's network<br>
>>> service<br>
>>><br>
>>> in<br>
>>><br>
>>> Nova, but also forward looking functionality around flexible<br>
>>> networking/openvswitch and layer 2 network bridging<br>
>>><br>
>>>    between cloud<br>
>>><br>
>>>    deployments.<br>
>>><br>
>>> This will be a longer term project and will serve as the bedrock<br>
>>> for<br>
>>><br>
>>> many<br>
>>><br>
>>> future OpenStack capabilities.<br>
>>><br>
>>> John<br>
>>><br>
>>> -----Original Message-----<br>
>>> From: openstack-bounces+john=<a href="http://openstack.org" target="_blank"></a><a href="http://openstack.org">openstack.org</a>@<a href="http://lists.launchpad.net" target="_blank"></a><a href="http://lists.launchpad.net">lists.launchpad.net</a><br>
>>><br>
</div>
</div>
<div>
<div></div>
<div class="h5">>>>    [mailto:<a href="mailto:openstack-bounces">openstack-bounces</a><openstack-bounces>+john=<br>
>>> <a href="http://openstack.org" target="_blank"></a><a href="http://openstack.org">openstack.org</a>@<a href="http://lists.launchpad.net" target="_blank"></a><a href="http://lists.launchpad.net">lists.launchpad.net</a>]<br>
>>><br>
>>>    On<br>
>>><br>
>>> Behalf<br>
>>><br>
>>> Of Thierry Carrez<br>
>>> Sent: Friday, January 28, 2011 1:52 PM<br>
>>> To: <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Subject: Re: [Openstack] Network Service for L2/L3 Network<br>
>>><br>
>>> Infrastructure<br>
>>><br>
>>> blueprint<br>
>>><br>
>>> John Purrier wrote:<br>
>>><br>
>>> Here is the suggestion. It is clear from the response<br>
>>><br>
>>>     on the list<br>
>>><br>
>>>   that<br>
>>><br>
>>> refactoring Nova in the Cactus timeframe will be too risky,<br>
>>><br>
>>> particularly as<br>
>>><br>
>>> we are focusing Cactus on Stability, Reliability, and<br>
>>><br>
>>>    Deployability<br>
>>><br>
>>>   (along<br>
>>><br>
>>> with a complete OpenStack API). For Cactus we should leave the<br>
>>><br>
>>> network and<br>
>>><br>
>>> volume services alone in Nova to minimize destabilizing the code<br>
>>><br>
>>> base. In<br>
>>><br>
>>> parallel, we can initiate the Network and Volume Service<br>
>>><br>
>>>    projects<br>
>>><br>
>>>    in Launchpad and allow the teams that form around these<br>
>>><br>
>>>    efforts to<br>
>>><br>
>>>    move<br>
>>><br>
>>> in<br>
>>><br>
>>> parallel, perhaps seeding their projects from the<br>
>>><br>
>>>    existing Nova code.<br>
>>><br>
>>><br>
>>> Once we complete Cactus we can have discussions at the Diablo DS<br>
>>><br>
>>>   about<br>
>>><br>
>>> progress these efforts have made and how best to move<br>
>>><br>
>>>    forward with<br>
>>><br>
>>>   Nova<br>
>>><br>
>>> integration and determine release targets.<br>
>>><br>
>>> I agree that there is value in starting the proof-of-concept work<br>
>>><br>
>>> around<br>
>>><br>
>>> the network services, without sacrificing too many developers to<br>
>>> it,<br>
>>><br>
>>> so<br>
>>><br>
>>> that a good plan can be presented and discussed at the<br>
>>><br>
>>>    Diablo Summit.<br>
>>><br>
>>><br>
>>> If volume sounds relatively simple to me, network sounds<br>
>>><br>
>>> significantly<br>
>>><br>
>>> more complex (just looking at the code ,network manager code is<br>
>>> currently used both by nova-compute and nova-network to<br>
>>><br>
>>>    modify the<br>
>>><br>
>>>   local<br>
>>><br>
>>> networking stack, so it's more than just handing out IP<br>
>>><br>
>>>    addresses<br>
>>><br>
>>>     through an API).<br>
>>><br>
>>> Cheers,<br>
>>><br>
>>> --<br>
>>> Thierry Carrez (ttx)<br>
>>> Release Manager, OpenStack<br>
>>><br>
>>> _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>>    _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>> Attachments:<br>
>>> - smime.p7s<br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> Post to : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
>>> Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
>>> More help : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>><br>
>>>    _______________________________________________ Mailing list:<br>
>>> <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a> Post to :
<a href="mailto:openstack@lists.launchpad.netUnsubscribe">openstack@lists.launchpad.netUnsubscribe</a> :<br>
>>> <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a> More help :<br>
>>> <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
>>><br>
>>> Confidentiality Notice: This e-mail message (including any attached or<br>
>>> embedded documents) is intended for the exclusive and confidential use of the<br>
>>> individual or entity to which this message is addressed, and unless otherwise<br>
>>> expressly indicated, is confidential and privileged information of Rackspace.<br>
>>> Any dissemination, distribution or copying of the enclosed material is prohibited.<br>
>>> If you receive this transmission in error, please notify us immediately by e-mail<br>
>>> at <a href="mailto:abuse@rackspace.com"></a><a href="mailto:abuse@rackspace.com">abuse@rackspace.com</a>, and delete the original message.<br>
>>> Your cooperation is appreciated.<br>
>>><br>
>>><br>
>><br>
><br>
<br>
_______________________________________________<br>
Mailing list: <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
Post to     : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a><br>
Unsubscribe : <a href="https://launchpad.net/~openstack" target="_blank"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a><br>
More help   : <a href="https://help.launchpad.net/ListHelp" target="_blank"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a><br>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div>
</blockquote>
<blockquote type="cite">
<div><span>_______________________________________________</span><br>
<span>Mailing list: <a href="https://launchpad.net/~openstack"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a></span><br>
<span>Post to     : <a href="mailto:openstack@lists.launchpad.net"></a><a href="mailto:openstack@lists.launchpad.net">openstack@lists.launchpad.net</a></span><br>
<span>Unsubscribe : <a href="https://launchpad.net/~openstack"></a><a href="https://launchpad.net/~openstack">https://launchpad.net/~openstack</a></span><br>
<span>More help   : <a href="https://help.launchpad.net/ListHelp"></a><a href="https://help.launchpad.net/ListHelp">https://help.launchpad.net/ListHelp</a></span><br>
</div>
</blockquote>
<PRE>
Confidentiality Notice: This e-mail message (including any attached or
embedded documents) is intended for the exclusive and confidential use of the
individual or entity to which this message is addressed, and unless otherwise
expressly indicated, is confidential and privileged information of Rackspace.
Any dissemination, distribution or copying of the enclosed material is prohibited.
If you receive this transmission in error, please notify us immediately by e-mail
at abuse@rackspace.com, and delete the original message.
Your cooperation is appreciated.
</PRE></body>
</html>