<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Markmcclain</id>
		<title>OpenStack - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.openstack.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Markmcclain"/>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/wiki/Special:Contributions/Markmcclain"/>
		<updated>2026-06-30T06:46:59Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.2</generator>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Arista-neutron-ml2-driver&amp;diff=166522</id>
		<title>Arista-neutron-ml2-driver</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Arista-neutron-ml2-driver&amp;diff=166522"/>
				<updated>2018-11-02T15:09:56Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Directory Structure */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Arista Neutron ML2 Driver =&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Arista ML2 Mechanism Driver implement ML2 Plugin Mechanism Driver API.&lt;br /&gt;
This driver can manage all types of Arista switches.&lt;br /&gt;
For further details, please refer to [https://www.arista.com/custom_data/downloads/?f=/support/download/DesignGuides/OpenStack_Deployment_Guide.pdf Arista OpenStack Deployment Guide] provided by Arista Networks.&lt;br /&gt;
&lt;br /&gt;
== Directory Structure ==&lt;br /&gt;
&lt;br /&gt;
The Arista Neutron ML2 Driver can be downloaded from the repository located at:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
https://git.openstack.org/openstack/networking-arista (branch: master)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This repository includes the latest development code and actively maintained branches.  Tagged releases for networking-arista are available from the Python Package Index at:&lt;br /&gt;
https://pypi.org/project/networking_arista/.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
* Prior to enabling Arista Driver, Arista EAPI Host (see configuration example below) must be up and running. For details, please see Arista OpenStack Deployment Guide&lt;br /&gt;
* Ensure that jsonrpclib is installed (see Arista OpenStack Deployment Guide)&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Arista Driver configuration (Neutron server node) ===&lt;br /&gt;
&lt;br /&gt;
* Edit /etc/neutron/plugins/ml2/ml2_conf_arista.ini:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ml2_arista]&lt;br /&gt;
# (StrOpt) EOS IP address. This is required field. If not set, all&lt;br /&gt;
#          communications to Arista EOS will fail&lt;br /&gt;
#&lt;br /&gt;
# eapi_host =&lt;br /&gt;
# Example: eapi_host = 192.168.0.1&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) EOS command API username. This is required field.&lt;br /&gt;
#          if not set, all communications to Arista EOS will fail.&lt;br /&gt;
#&lt;br /&gt;
# eapi_username =&lt;br /&gt;
# Example: arista_eapi_username = admin&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) EOS command API password. This is required field.&lt;br /&gt;
#          if not set, all communications to Arista EOS will fail.&lt;br /&gt;
#&lt;br /&gt;
# eapi_password =&lt;br /&gt;
# Example: eapi_password = my_password&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) Defines if hostnames are sent to Arista EOS as FQDNs&lt;br /&gt;
#          (&amp;quot;node1.domain.com&amp;quot;) or as short names (&amp;quot;node1&amp;quot;). This is&lt;br /&gt;
#          optional. If not set, a value of &amp;quot;True&amp;quot; is assumed.&lt;br /&gt;
#&lt;br /&gt;
# use_fqdn =&lt;br /&gt;
# Example: use_fqdn = True&lt;br /&gt;
#&lt;br /&gt;
# (IntOpt) Sync interval in seconds between Quantum plugin and EOS.&lt;br /&gt;
#          This field defines how often the synchronization is performed.&lt;br /&gt;
#          This is an optional field. If not set, a value of 180 seconds&lt;br /&gt;
#          is assumed.&lt;br /&gt;
#&lt;br /&gt;
# sync_interval =&lt;br /&gt;
# Example: sync_interval = 60&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) Defines Region Name that is assigned to this OpenStack Controller.&lt;br /&gt;
#          This is useful when multiple OpenStack/Neutron controllers are&lt;br /&gt;
#          managing the same Arista HW clusters. Note that this name must&lt;br /&gt;
#          match with the region name registered (or known) to keystone&lt;br /&gt;
#          service. Authentication with Keysotne is performed by EOS.&lt;br /&gt;
#          This is optional. If not set, a value of &amp;quot;RegionOne&amp;quot; is assumed.&lt;br /&gt;
#&lt;br /&gt;
# region_name =&lt;br /&gt;
# Example: region_name = RegionOne&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start the neutron service by providing the relevant configuration files&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd &amp;lt;neutron_path&amp;gt; &amp;amp;&amp;amp; python &amp;lt;neutron_path&amp;gt;/bin/neutron-server --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-file /etc/neutron/plugins/ml2/ml2_conf_arista.ini&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[category:neutron]]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Arista-neutron-ml2-driver&amp;diff=166521</id>
		<title>Arista-neutron-ml2-driver</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Arista-neutron-ml2-driver&amp;diff=166521"/>
				<updated>2018-11-02T15:01:25Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Arista Neutron ML2 Driver =&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Arista ML2 Mechanism Driver implement ML2 Plugin Mechanism Driver API.&lt;br /&gt;
This driver can manage all types of Arista switches.&lt;br /&gt;
For further details, please refer to [https://www.arista.com/custom_data/downloads/?f=/support/download/DesignGuides/OpenStack_Deployment_Guide.pdf Arista OpenStack Deployment Guide] provided by Arista Networks.&lt;br /&gt;
&lt;br /&gt;
== Directory Structure ==&lt;br /&gt;
&lt;br /&gt;
The Arista Neutron ML2 Driver can be downloaded from the repository located at:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
https://github.com/openstack/networking-arista (branch: master)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This repository represents code that will be put into the mech_arista directory as:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
/opt/stack/neutron/neutron/plugins/ml2/drivers/arista&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
* Prior to enabling Arista Driver, Arista EAPI Host (see configuration example below) must be up and running. For details, please see Arista OpenStack Deployment Guide&lt;br /&gt;
* Ensure that jsonrpclib is installed (see Arista OpenStack Deployment Guide)&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
&lt;br /&gt;
=== Arista Driver configuration (Neutron server node) ===&lt;br /&gt;
&lt;br /&gt;
* Edit /etc/neutron/plugins/ml2/ml2_conf_arista.ini:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
[ml2_arista]&lt;br /&gt;
# (StrOpt) EOS IP address. This is required field. If not set, all&lt;br /&gt;
#          communications to Arista EOS will fail&lt;br /&gt;
#&lt;br /&gt;
# eapi_host =&lt;br /&gt;
# Example: eapi_host = 192.168.0.1&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) EOS command API username. This is required field.&lt;br /&gt;
#          if not set, all communications to Arista EOS will fail.&lt;br /&gt;
#&lt;br /&gt;
# eapi_username =&lt;br /&gt;
# Example: arista_eapi_username = admin&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) EOS command API password. This is required field.&lt;br /&gt;
#          if not set, all communications to Arista EOS will fail.&lt;br /&gt;
#&lt;br /&gt;
# eapi_password =&lt;br /&gt;
# Example: eapi_password = my_password&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) Defines if hostnames are sent to Arista EOS as FQDNs&lt;br /&gt;
#          (&amp;quot;node1.domain.com&amp;quot;) or as short names (&amp;quot;node1&amp;quot;). This is&lt;br /&gt;
#          optional. If not set, a value of &amp;quot;True&amp;quot; is assumed.&lt;br /&gt;
#&lt;br /&gt;
# use_fqdn =&lt;br /&gt;
# Example: use_fqdn = True&lt;br /&gt;
#&lt;br /&gt;
# (IntOpt) Sync interval in seconds between Quantum plugin and EOS.&lt;br /&gt;
#          This field defines how often the synchronization is performed.&lt;br /&gt;
#          This is an optional field. If not set, a value of 180 seconds&lt;br /&gt;
#          is assumed.&lt;br /&gt;
#&lt;br /&gt;
# sync_interval =&lt;br /&gt;
# Example: sync_interval = 60&lt;br /&gt;
#&lt;br /&gt;
# (StrOpt) Defines Region Name that is assigned to this OpenStack Controller.&lt;br /&gt;
#          This is useful when multiple OpenStack/Neutron controllers are&lt;br /&gt;
#          managing the same Arista HW clusters. Note that this name must&lt;br /&gt;
#          match with the region name registered (or known) to keystone&lt;br /&gt;
#          service. Authentication with Keysotne is performed by EOS.&lt;br /&gt;
#          This is optional. If not set, a value of &amp;quot;RegionOne&amp;quot; is assumed.&lt;br /&gt;
#&lt;br /&gt;
# region_name =&lt;br /&gt;
# Example: region_name = RegionOne&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start the neutron service by providing the relevant configuration files&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
cd &amp;lt;neutron_path&amp;gt; &amp;amp;&amp;amp; python &amp;lt;neutron_path&amp;gt;/bin/neutron-server --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini --config-file /etc/neutron/plugins/ml2/ml2_conf_arista.ini&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[category:neutron]]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151196</id>
		<title>PTG/Pike/CityGuide</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151196"/>
				<updated>2017-02-15T16:56:01Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Dinner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Breakfast ==&lt;br /&gt;
* [https://www.yelp.com/biz/condesa-coffee-atlanta-3 Condessa Coffee]&lt;br /&gt;
* [https://www.yelp.com/biz/rawesome-juicery-atlanta Rawesome Juicery] &lt;br /&gt;
* [https://www.yelp.com/biz/ardens-garden-atlanta-13 Arden's Garden]&lt;br /&gt;
* [https://www.yelp.com/biz/panburys-pie-caf%C3%A9-atlanta Panbury's Pie Cafe]&lt;br /&gt;
* [https://www.yelp.com/biz/flats-handcrafted-flatbreads-atlanta- Flats Handcrafted Flatbreads]&lt;br /&gt;
* [https://www.yelp.com/biz/starbucks-atlanta-89 Starbucks]&lt;br /&gt;
* [https://www.yelp.com/biz/au-bon-pain-atlanta-8?osq=Au+Bon+Pain Au Bon Pain]&lt;br /&gt;
* [https://www.yelp.com/biz/highland-bakery-atlanta Highland Bakery]&lt;br /&gt;
&lt;br /&gt;
== Local Coffee Shops ==&lt;br /&gt;
Atlanta has several good independent and local chains for coffee; however, all require car access. &lt;br /&gt;
* [https://www.yelp.com/biz/ébrìk-coffee-room-atlanta Ebrik]&lt;br /&gt;
* [https://www.yelp.com/biz/octane-atlanta Octane]&lt;br /&gt;
* [https://www.yelp.com/biz/dancing-goats-coffee-bar-atlanta Dancing Goats Coffee Bar]&lt;br /&gt;
* [https://www.yelp.com/biz/chattahoochee-coffee-company-atlanta-6 Chattahoochee Coffee Company]&lt;br /&gt;
&lt;br /&gt;
== Dinner == &lt;br /&gt;
&lt;br /&gt;
There are lots of dinner options in Atlanta. The most popular and newer restaurants are located east of downtown and west of downtown most within 3mi/5k of hotel.  Many will require a car. Both Lyft and Uber are available in Atlanta in addition taxi service. Options in Midtown are accessible via public transit on MARTA's Gold/Red Rail Line.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Downtown (Closest to hotel)&lt;br /&gt;
* [https://www.yelp.com/biz/alma-cocina-atlanta Alma Cocina]&lt;br /&gt;
* [https://www.yelp.com/biz/blossom-tree-atlanta Blosson Tree]&lt;br /&gt;
* [https://www.yelp.com/biz/der-biergarten-atlanta Der Biergarten]&lt;br /&gt;
* [https://www.yelp.com/biz/poor-calvins-atlanta-15 Poor Calvin's]&lt;br /&gt;
* [https://www.yelp.com/biz/sway-atlanta Sway]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Inman Park/Old Fourth Ward (East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ammazza-atlanta Ammazza]&lt;br /&gt;
* [https://www.yelp.com/biz/beetlecat-atlanta BeetleCat]&lt;br /&gt;
* [https://www.yelp.com/biz/boccalupo-atlanta BoccaLupo]&lt;br /&gt;
* [https://www.yelp.com/biz/bread-and-butterfly-atlanta Bread and Butterfly]&lt;br /&gt;
* [https://www.yelp.com/biz/el-super-pan-atlanta-3 El Super Pan]&lt;br /&gt;
* [https://www.yelp.com/biz/fox-bros-bar-b-q-atlanta Fox Brothers BBQ]&lt;br /&gt;
* [https://www.yelp.com/biz/home-grown-atlanta Home Grown]&lt;br /&gt;
* [https://www.yelp.com/biz/one-eared-stag-atlanta One Eared Stag]&lt;br /&gt;
* [https://www.yelp.com/biz/spice-to-table-atlanta Spice to Table]&lt;br /&gt;
* [https://www.yelp.com/biz/sotto-sotto-atlanta-2 Sotto Sotto]&lt;br /&gt;
* [https://www.yelp.com/biz/the-porter-beer-bar-atlanta Porter Beer Bar]&lt;br /&gt;
* [https://www.yelp.com/biz/ticonderoga-club-atlanta Ticonderoga Club]&lt;br /&gt;
* [https://www.yelp.com/biz/venkmans-atlanta Venkman's] &lt;br /&gt;
* [https://www.yelp.com/biz/wrecking-bar-brewpub-atlanta Wrecking Bar Brewpub] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Glenwood/East Atlanta (Further East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/gunshow-atlanta-2 Gunshow]&lt;br /&gt;
* [https://www.yelp.com/biz/gaja-korean-bar-atlanta Gaja Korean Bar]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Midtown (North of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ecco-atlanta Ecco]&lt;br /&gt;
* [https://www.yelp.com/biz/the-lawrence-atlanta The Lawrence]&lt;br /&gt;
* [https://www.yelp.com/biz/south-city-kitchen-midtown-atlanta-2 South City Kitchen]&lt;br /&gt;
* [https://www.yelp.com/biz/pasta-da-pulcinella-atlanta Pasta Da Pulcinella ]&lt;br /&gt;
* [https://www.yelp.com/biz/torched-hop-brewing-atlanta Torched Hop Brewing]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Westside (West of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/bartaco-west-midtown-atlanta bartaco]&lt;br /&gt;
* [https://www.yelp.com/biz/cooks-and-soldiers-atlanta Cooks and Soldiers]&lt;br /&gt;
* [https://www.yelp.com/biz/le-fat-atlanta Le Fat]&lt;br /&gt;
* [https://www.yelp.com/biz/miller-union-atlanta Miller Union]&lt;br /&gt;
* [https://www.yelp.com/biz/the-optimist-atlanta The Optimist]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151195</id>
		<title>PTG/Pike/CityGuide</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151195"/>
				<updated>2017-02-15T16:54:05Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Breakfast */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Breakfast ==&lt;br /&gt;
* [https://www.yelp.com/biz/condesa-coffee-atlanta-3 Condessa Coffee]&lt;br /&gt;
* [https://www.yelp.com/biz/rawesome-juicery-atlanta Rawesome Juicery] &lt;br /&gt;
* [https://www.yelp.com/biz/ardens-garden-atlanta-13 Arden's Garden]&lt;br /&gt;
* [https://www.yelp.com/biz/panburys-pie-caf%C3%A9-atlanta Panbury's Pie Cafe]&lt;br /&gt;
* [https://www.yelp.com/biz/flats-handcrafted-flatbreads-atlanta- Flats Handcrafted Flatbreads]&lt;br /&gt;
* [https://www.yelp.com/biz/starbucks-atlanta-89 Starbucks]&lt;br /&gt;
* [https://www.yelp.com/biz/au-bon-pain-atlanta-8?osq=Au+Bon+Pain Au Bon Pain]&lt;br /&gt;
* [https://www.yelp.com/biz/highland-bakery-atlanta Highland Bakery]&lt;br /&gt;
&lt;br /&gt;
== Local Coffee Shops ==&lt;br /&gt;
Atlanta has several good independent and local chains for coffee; however, all require car access. &lt;br /&gt;
* [https://www.yelp.com/biz/ébrìk-coffee-room-atlanta Ebrik]&lt;br /&gt;
* [https://www.yelp.com/biz/octane-atlanta Octane]&lt;br /&gt;
* [https://www.yelp.com/biz/dancing-goats-coffee-bar-atlanta Dancing Goats Coffee Bar]&lt;br /&gt;
* [https://www.yelp.com/biz/chattahoochee-coffee-company-atlanta-6 Chattahoochee Coffee Company]&lt;br /&gt;
&lt;br /&gt;
== Dinner == &lt;br /&gt;
&lt;br /&gt;
There are lots of dinner options in Atlanta. The most popular and newer restaurants are located east of downtown and west of downtown most within 3mi/5k of hotel.  Many will require a car. Both Lyft and Uber are available in Atlanta in addition taxi service.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Downtown (Closest to hotel)&lt;br /&gt;
* [https://www.yelp.com/biz/alma-cocina-atlanta Alma Cocina]&lt;br /&gt;
* [https://www.yelp.com/biz/blossom-tree-atlanta Blosson Tree]&lt;br /&gt;
* [https://www.yelp.com/biz/der-biergarten-atlanta Der Biergarten]&lt;br /&gt;
* [https://www.yelp.com/biz/poor-calvins-atlanta-15 Poor Calvin's]&lt;br /&gt;
* [https://www.yelp.com/biz/sway-atlanta Sway]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Inman Park/Old Fourth Ward (East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ammazza-atlanta Ammazza]&lt;br /&gt;
* [https://www.yelp.com/biz/beetlecat-atlanta BeetleCat]&lt;br /&gt;
* [https://www.yelp.com/biz/boccalupo-atlanta BoccaLupo]&lt;br /&gt;
* [https://www.yelp.com/biz/bread-and-butterfly-atlanta Bread and Butterfly]&lt;br /&gt;
* [https://www.yelp.com/biz/el-super-pan-atlanta-3 El Super Pan]&lt;br /&gt;
* [https://www.yelp.com/biz/fox-bros-bar-b-q-atlanta Fox Brothers BBQ]&lt;br /&gt;
* [https://www.yelp.com/biz/home-grown-atlanta Home Grown]&lt;br /&gt;
* [https://www.yelp.com/biz/one-eared-stag-atlanta One Eared Stag]&lt;br /&gt;
* [https://www.yelp.com/biz/spice-to-table-atlanta Spice to Table]&lt;br /&gt;
* [https://www.yelp.com/biz/sotto-sotto-atlanta-2 Sotto Sotto]&lt;br /&gt;
* [https://www.yelp.com/biz/the-porter-beer-bar-atlanta Porter Beer Bar]&lt;br /&gt;
* [https://www.yelp.com/biz/ticonderoga-club-atlanta Ticonderoga Club]&lt;br /&gt;
* [https://www.yelp.com/biz/venkmans-atlanta Venkman's] &lt;br /&gt;
* [https://www.yelp.com/biz/wrecking-bar-brewpub-atlanta Wrecking Bar Brewpub] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Glenwood/East Atlanta (Further East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/gunshow-atlanta-2 Gunshow]&lt;br /&gt;
* [https://www.yelp.com/biz/gaja-korean-bar-atlanta Gaja Korean Bar]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Midtown (North of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ecco-atlanta Ecco]&lt;br /&gt;
* [https://www.yelp.com/biz/the-lawrence-atlanta The Lawrence]&lt;br /&gt;
* [https://www.yelp.com/biz/south-city-kitchen-midtown-atlanta-2 South City Kitchen]&lt;br /&gt;
* [https://www.yelp.com/biz/pasta-da-pulcinella-atlanta Pasta Da Pulcinella ]&lt;br /&gt;
* [https://www.yelp.com/biz/torched-hop-brewing-atlanta Torched Hop Brewing]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Westside (West of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/bartaco-west-midtown-atlanta bartaco]&lt;br /&gt;
* [https://www.yelp.com/biz/cooks-and-soldiers-atlanta Cooks and Soldiers]&lt;br /&gt;
* [https://www.yelp.com/biz/le-fat-atlanta Le Fat]&lt;br /&gt;
* [https://www.yelp.com/biz/miller-union-atlanta Miller Union]&lt;br /&gt;
* [https://www.yelp.com/biz/the-optimist-atlanta The Optimist]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151194</id>
		<title>PTG/Pike/CityGuide</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=PTG/Pike/CityGuide&amp;diff=151194"/>
				<updated>2017-02-15T16:46:24Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Dinner */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Breakfast ==&lt;br /&gt;
* [https://www.yelp.com/biz/condesa-coffee-atlanta-3?osq=condessa+coffee Condessa Coffee]&lt;br /&gt;
* [https://www.yelp.com/biz/rawesome-juicery-atlanta?osq=rawsome Rawesome Juicery] &lt;br /&gt;
* [https://www.yelp.com/biz/ardens-garden-atlanta-13 Arden's Garden]&lt;br /&gt;
* [https://www.yelp.com/biz/panburys-pie-caf%C3%A9-atlanta Panbury's Pie Cafe]&lt;br /&gt;
* [https://www.yelp.com/biz/flats-handcrafted-flatbreads-atlanta-2?osq=flat%27s Flats Handcrafted Flatbreads]&lt;br /&gt;
* [https://www.yelp.com/biz/starbucks-atlanta-89 Starbucks]&lt;br /&gt;
* [https://www.yelp.com/biz/au-bon-pain-atlanta-8?osq=Au+Bon+Pain Au Bon Pain]&lt;br /&gt;
&lt;br /&gt;
== Dinner == &lt;br /&gt;
&lt;br /&gt;
There are lots of dinner options in Atlanta. The most popular and newer restaurants are located east of downtown and west of downtown most within 3mi/5k of hotel.  Many will require a car. Both Lyft and Uber are available in Atlanta in addition taxi service.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Downtown (Closest to hotel)&lt;br /&gt;
* [https://www.yelp.com/biz/alma-cocina-atlanta Alma Cocina]&lt;br /&gt;
* [https://www.yelp.com/biz/blossom-tree-atlanta Blosson Tree]&lt;br /&gt;
* [https://www.yelp.com/biz/der-biergarten-atlanta Der Biergarten]&lt;br /&gt;
* [https://www.yelp.com/biz/poor-calvins-atlanta-15 Poor Calvin's]&lt;br /&gt;
* [https://www.yelp.com/biz/sway-atlanta Sway]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Inman Park/Old Fourth Ward (East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ammazza-atlanta Ammazza]&lt;br /&gt;
* [https://www.yelp.com/biz/beetlecat-atlanta BeetleCat]&lt;br /&gt;
* [https://www.yelp.com/biz/boccalupo-atlanta BoccaLupo]&lt;br /&gt;
* [https://www.yelp.com/biz/bread-and-butterfly-atlanta Bread and Butterfly]&lt;br /&gt;
* [https://www.yelp.com/biz/el-super-pan-atlanta-3 El Super Pan]&lt;br /&gt;
* [https://www.yelp.com/biz/fox-bros-bar-b-q-atlanta Fox Brothers BBQ]&lt;br /&gt;
* [https://www.yelp.com/biz/home-grown-atlanta Home Grown]&lt;br /&gt;
* [https://www.yelp.com/biz/one-eared-stag-atlanta One Eared Stag]&lt;br /&gt;
* [https://www.yelp.com/biz/spice-to-table-atlanta Spice to Table]&lt;br /&gt;
* [https://www.yelp.com/biz/sotto-sotto-atlanta-2 Sotto Sotto]&lt;br /&gt;
* [https://www.yelp.com/biz/the-porter-beer-bar-atlanta Porter Beer Bar]&lt;br /&gt;
* [https://www.yelp.com/biz/ticonderoga-club-atlanta Ticonderoga Club]&lt;br /&gt;
* [https://www.yelp.com/biz/venkmans-atlanta Venkman's] &lt;br /&gt;
* [https://www.yelp.com/biz/wrecking-bar-brewpub-atlanta Wrecking Bar Brewpub] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Glenwood/East Atlanta (Further East of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/gunshow-atlanta-2 Gunshow]&lt;br /&gt;
* [https://www.yelp.com/biz/gaja-korean-bar-atlanta Gaja Korean Bar]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Midtown (North of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/ecco-atlanta Ecco]&lt;br /&gt;
* [https://www.yelp.com/biz/the-lawrence-atlanta The Lawrence]&lt;br /&gt;
* [https://www.yelp.com/biz/south-city-kitchen-midtown-atlanta-2 South City Kitchen]&lt;br /&gt;
* [https://www.yelp.com/biz/pasta-da-pulcinella-atlanta Pasta Da Pulcinella ]&lt;br /&gt;
* [https://www.yelp.com/biz/torched-hop-brewing-atlanta Torched Hop Brewing]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Westside (West of Sheraton)&lt;br /&gt;
* [https://www.yelp.com/biz/bartaco-west-midtown-atlanta bartaco]&lt;br /&gt;
* [https://www.yelp.com/biz/cooks-and-soldiers-atlanta Cooks and Soldiers]&lt;br /&gt;
* [https://www.yelp.com/biz/le-fat-atlanta Le Fat]&lt;br /&gt;
* [https://www.yelp.com/biz/miller-union-atlanta Miller Union]&lt;br /&gt;
* [https://www.yelp.com/biz/the-optimist-atlanta The Optimist]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Release_Naming/O_Proposals&amp;diff=96079</id>
		<title>Release Naming/O Proposals</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Release_Naming/O_Proposals&amp;diff=96079"/>
				<updated>2015-11-09T16:15:20Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Proposed Names */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== O Release Naming ==&lt;br /&gt;
&lt;br /&gt;
According to the [http://governance.openstack.org/reference/release-naming.html Release Naming Process], this page will contain a list of nominated names for the O release of OpenStack. We will accept nominations until 2015-11-15 23:59:59 UTC.&lt;br /&gt;
&lt;br /&gt;
=== Release Name Criteria ===&lt;br /&gt;
&lt;br /&gt;
* Each release name must start with the letter of the ISO basic Latin alphabet following the initial letter of the previous release, starting with the initial release of &amp;quot;Austin&amp;quot;.  After &amp;quot;Z&amp;quot;, the next name should start with &amp;quot;A&amp;quot; again.&lt;br /&gt;
* The name must be composed only of the 26 characters of the ISO basic Latin alphabet.  Names which can be transliterated into this character set are also acceptable.&lt;br /&gt;
* The name must refer to the physical or human geography of the region encompassing the location of the OpenStack design summit for the corresponding release.  The exact boundaries of the geographic region under consideration must be declared before the opening of nominations, as part of the initiation of the selection process.&lt;br /&gt;
* The name must be a single word with a maximum of 10 characters. Words that describe the feature should not be included, so &amp;quot;Foo City&amp;quot; or &amp;quot;Foo Peak&amp;quot; would both be eligible as &amp;quot;Foo&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Names which do not meet these criteria but otherwise sound really cool&lt;br /&gt;
should be added to a separate section of the wiki page and the TC may&lt;br /&gt;
make an exception for one or more of them to be considered in the&lt;br /&gt;
Condorcet poll.  The naming official is responsible for presenting the&lt;br /&gt;
list of exceptional names for consideration to the TC before the poll&lt;br /&gt;
opens.&lt;br /&gt;
&lt;br /&gt;
=== Exact Geographic Region ===&lt;br /&gt;
&lt;br /&gt;
The Geographic Region from where names for the O release will come is [https://en.wikipedia.org/wiki/Catalonia Catalonia]&lt;br /&gt;
&lt;br /&gt;
=== Proposed Names ===&lt;br /&gt;
* Osona, a Catalan comarqua (district) and historic county [https://en.wikipedia.org/wiki/Osona] [https://www.flickr.com/photos/braid44/2189871003]&lt;br /&gt;
* Organyà, A Catalan municipality [https://en.wikipedia.org/wiki/Organy%C3%A0]&lt;br /&gt;
* Oliana, a Catalan municipality [https://en.wikipedia.org/wiki/Oliana]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91610</id>
		<title>Astara</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91610"/>
				<updated>2015-10-02T03:13:07Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Contributing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://git.openstack.org/cgit/stackforge/akanda/ Source Code]&lt;br /&gt;
* [https://launchpad.net/akanda Launchpad]&lt;br /&gt;
* Deprecated Documentation (pre-OpenStack) [https://http://docs.akanda.io/en/latest/ ReadTheDocs]&lt;br /&gt;
&lt;br /&gt;
== Core Team ==&lt;br /&gt;
&lt;br /&gt;
* [PTL] Adam Gandelman (adam_g)&lt;br /&gt;
* Mark McClain (markmcclain)&lt;br /&gt;
* David Lenwell (davidlenwell)&lt;br /&gt;
* Ryan Petrello (ryanpetrello)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  Meetings&lt;br /&gt;
| [[Meetings/Akanda]] &lt;br /&gt;
|-&lt;br /&gt;
|  IRC &lt;br /&gt;
| #akanda on Freenode&lt;br /&gt;
|-&lt;br /&gt;
| Mailing List&lt;br /&gt;
| [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev OpenStack dev] list, prefix with [astara]&lt;br /&gt;
|-&lt;br /&gt;
|  Milestones  &lt;br /&gt;
| https://launchpad.net/akanda/+milestones&lt;br /&gt;
|-&lt;br /&gt;
|  Integration  &lt;br /&gt;
| [[Astara/Integration]] &lt;br /&gt;
|-&lt;br /&gt;
|  Bug tracker   &lt;br /&gt;
| https://bugs.launchpad.net/akanda&lt;br /&gt;
|- &lt;br /&gt;
| Blueprints&lt;br /&gt;
| [[Astarta/Blueprints]]&lt;br /&gt;
|- &lt;br /&gt;
|  Specs&lt;br /&gt;
| http://git.openstack.org/cgit/stackforge/akanda/tree/specs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* [http://docs.akanda.io/en/latest/developer_quickstart.html Developer Quickstart]&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
A good place to start is by reading at the [[How_To_Contribute]] to OpenStack page.  For information on contributing to Astara specifically see the [http://docs.openstack.org/developer/astara/contribute/getting_involved.html Getting Involved] page in the developer documentation.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91609</id>
		<title>Astara</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91609"/>
				<updated>2015-10-02T03:12:47Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Getting Started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://git.openstack.org/cgit/stackforge/akanda/ Source Code]&lt;br /&gt;
* [https://launchpad.net/akanda Launchpad]&lt;br /&gt;
* Deprecated Documentation (pre-OpenStack) [https://http://docs.akanda.io/en/latest/ ReadTheDocs]&lt;br /&gt;
&lt;br /&gt;
== Core Team ==&lt;br /&gt;
&lt;br /&gt;
* [PTL] Adam Gandelman (adam_g)&lt;br /&gt;
* Mark McClain (markmcclain)&lt;br /&gt;
* David Lenwell (davidlenwell)&lt;br /&gt;
* Ryan Petrello (ryanpetrello)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  Meetings&lt;br /&gt;
| [[Meetings/Akanda]] &lt;br /&gt;
|-&lt;br /&gt;
|  IRC &lt;br /&gt;
| #akanda on Freenode&lt;br /&gt;
|-&lt;br /&gt;
| Mailing List&lt;br /&gt;
| [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev OpenStack dev] list, prefix with [astara]&lt;br /&gt;
|-&lt;br /&gt;
|  Milestones  &lt;br /&gt;
| https://launchpad.net/akanda/+milestones&lt;br /&gt;
|-&lt;br /&gt;
|  Integration  &lt;br /&gt;
| [[Astara/Integration]] &lt;br /&gt;
|-&lt;br /&gt;
|  Bug tracker   &lt;br /&gt;
| https://bugs.launchpad.net/akanda&lt;br /&gt;
|- &lt;br /&gt;
| Blueprints&lt;br /&gt;
| [[Astarta/Blueprints]]&lt;br /&gt;
|- &lt;br /&gt;
|  Specs&lt;br /&gt;
| http://git.openstack.org/cgit/stackforge/akanda/tree/specs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* [http://docs.akanda.io/en/latest/developer_quickstart.html Developer Quickstart]&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
A good place to start is by reading at the [[How_To_Contribute]] to OpenStack page.  For information on contributing to Astara specifically see the [http://docs.openstack.org/developer/barbican/contribute/getting_involved.html Getting Involved] page in the developer documentation.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91608</id>
		<title>Astara</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91608"/>
				<updated>2015-10-02T03:12:09Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://git.openstack.org/cgit/stackforge/akanda/ Source Code]&lt;br /&gt;
* [https://launchpad.net/akanda Launchpad]&lt;br /&gt;
* Deprecated Documentation (pre-OpenStack) [https://http://docs.akanda.io/en/latest/ ReadTheDocs]&lt;br /&gt;
&lt;br /&gt;
== Core Team ==&lt;br /&gt;
&lt;br /&gt;
* [PTL] Adam Gandelman (adam_g)&lt;br /&gt;
* Mark McClain (markmcclain)&lt;br /&gt;
* David Lenwell (davidlenwell)&lt;br /&gt;
* Ryan Petrello (ryanpetrello)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  Meetings&lt;br /&gt;
| [[Meetings/Akanda]] &lt;br /&gt;
|-&lt;br /&gt;
|  IRC &lt;br /&gt;
| #akanda on Freenode&lt;br /&gt;
|-&lt;br /&gt;
| Mailing List&lt;br /&gt;
| [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev OpenStack dev] list, prefix with [astara]&lt;br /&gt;
|-&lt;br /&gt;
|  Milestones  &lt;br /&gt;
| https://launchpad.net/akanda/+milestones&lt;br /&gt;
|-&lt;br /&gt;
|  Integration  &lt;br /&gt;
| [[Astara/Integration]] &lt;br /&gt;
|-&lt;br /&gt;
|  Bug tracker   &lt;br /&gt;
| https://bugs.launchpad.net/akanda&lt;br /&gt;
|- &lt;br /&gt;
| Blueprints&lt;br /&gt;
| [[Astarta/Blueprints]]&lt;br /&gt;
|- &lt;br /&gt;
|  Specs&lt;br /&gt;
| http://git.openstack.org/cgit/stackforge/akanda/tree/specs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* [http://docs.akanda.io/en/latest/developer_quickstart.html Developer Quickstart]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/BarbicanDevStack Running Barbican via DevStack]&lt;br /&gt;
* [https://github.com/cloudkeep-ops/barbican-vagrant-zero/blob/master/README.md Setting up a local Barbican Cluster using Vagrant]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Barbican/Barbican-IDE-Debugging Barbican debugging with IDE]&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
A good place to start is by reading at the [[How_To_Contribute]] to OpenStack page.  For information on contributing to Astara specifically see the [http://docs.openstack.org/developer/barbican/contribute/getting_involved.html Getting Involved] page in the developer documentation.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91607</id>
		<title>Astara</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91607"/>
				<updated>2015-10-02T03:11:38Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.&lt;br /&gt;
&lt;br /&gt;
Barbican is a REST API designed for the secure storage, provisioning and management of secrets such as passwords, encryption keys and X.509 Certificates. It is aimed at being useful for all environments, including large ephemeral Clouds.  Documentation and Code can be found at the following locations:&lt;br /&gt;
&lt;br /&gt;
* [http://docs.openstack.org/developer/barbican API and Development Documentation]&lt;br /&gt;
* [http://git.openstack.org/cgit/stackforge/akanda/ Source Code]&lt;br /&gt;
* [https://launchpad.net/akanda Launchpad]&lt;br /&gt;
* Deprecated Documentation (pre-OpenStack) [https://http://docs.akanda.io/en/latest/ ReadTheDocs]&lt;br /&gt;
&lt;br /&gt;
== Core Team ==&lt;br /&gt;
&lt;br /&gt;
* [PTL] Adam Gandelman (adam_g)&lt;br /&gt;
* Mark McClain (markmcclain)&lt;br /&gt;
* David Lenwell (davidlenwell)&lt;br /&gt;
* Ryan Petrello (ryanpetrello)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  Meetings&lt;br /&gt;
| [[Meetings/Akanda]] &lt;br /&gt;
|-&lt;br /&gt;
|  IRC &lt;br /&gt;
| #akanda on Freenode&lt;br /&gt;
|-&lt;br /&gt;
| Mailing List&lt;br /&gt;
| [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev OpenStack dev] list, prefix with [astara]&lt;br /&gt;
|-&lt;br /&gt;
|  Milestones  &lt;br /&gt;
| https://launchpad.net/akanda/+milestones&lt;br /&gt;
|-&lt;br /&gt;
|  Integration  &lt;br /&gt;
| [[Astara/Integration]] &lt;br /&gt;
|-&lt;br /&gt;
|  Bug tracker   &lt;br /&gt;
| https://bugs.launchpad.net/akanda&lt;br /&gt;
|- &lt;br /&gt;
| Blueprints&lt;br /&gt;
| [[Astarta/Blueprints]]&lt;br /&gt;
|- &lt;br /&gt;
|  Specs&lt;br /&gt;
| http://git.openstack.org/cgit/stackforge/akanda/tree/specs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* [http://docs.akanda.io/en/latest/developer_quickstart.html Developer Quickstart]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/BarbicanDevStack Running Barbican via DevStack]&lt;br /&gt;
* [https://github.com/cloudkeep-ops/barbican-vagrant-zero/blob/master/README.md Setting up a local Barbican Cluster using Vagrant]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Barbican/Barbican-IDE-Debugging Barbican debugging with IDE]&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
A good place to start is by reading at the [[How_To_Contribute]] to OpenStack page.  For information on contributing to Astara specifically see the [http://docs.openstack.org/developer/barbican/contribute/getting_involved.html Getting Involved] page in the developer documentation.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91606</id>
		<title>Astara</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Astara&amp;diff=91606"/>
				<updated>2015-10-02T03:11:13Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: Created page with &amp;quot;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.  Barbican is a REST API designed for...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Astara is a network orchestration service designed for provisioning Neutron managed virtual network functions in an OpenStack deployment.&lt;br /&gt;
&lt;br /&gt;
Barbican is a REST API designed for the secure storage, provisioning and management of secrets such as passwords, encryption keys and X.509 Certificates. It is aimed at being useful for all environments, including large ephemeral Clouds.  Documentation and Code can be found at the following locations:&lt;br /&gt;
&lt;br /&gt;
* [http://docs.openstack.org/developer/barbican API and Development Documentation]&lt;br /&gt;
* [http://git.openstack.org/cgit/openstack/barbican/ Source Code]&lt;br /&gt;
* [https://launchpad.net/akanda Launchpad]&lt;br /&gt;
* Deprecated Documentation (pre-OpenStack) [https://http://docs.akanda.io/en/latest/ ReadTheDocs]&lt;br /&gt;
&lt;br /&gt;
== Core Team ==&lt;br /&gt;
&lt;br /&gt;
* [PTL] Adam Gandelman (adam_g)&lt;br /&gt;
* Mark McClain (markmcclain)&lt;br /&gt;
* David Lenwell (davidlenwell)&lt;br /&gt;
* Ryan Petrello (ryanpetrello)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  Meetings&lt;br /&gt;
| [[Meetings/Akanda]] &lt;br /&gt;
|-&lt;br /&gt;
|  IRC &lt;br /&gt;
| #akanda on Freenode&lt;br /&gt;
|-&lt;br /&gt;
| Mailing List&lt;br /&gt;
| [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev OpenStack dev] list, prefix with [astara]&lt;br /&gt;
|-&lt;br /&gt;
|  Milestones  &lt;br /&gt;
| https://launchpad.net/akanda/+milestones&lt;br /&gt;
|-&lt;br /&gt;
|  Integration  &lt;br /&gt;
| [[Astara/Integration]] &lt;br /&gt;
|-&lt;br /&gt;
|  Bug tracker   &lt;br /&gt;
| https://bugs.launchpad.net/akanda&lt;br /&gt;
|- &lt;br /&gt;
| Blueprints&lt;br /&gt;
| [[Astarta/Blueprints]]&lt;br /&gt;
|- &lt;br /&gt;
|  Specs&lt;br /&gt;
| http://git.openstack.org/cgit/stackforge/akanda/tree/specs&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
* [http://docs.akanda.io/en/latest/developer_quickstart.html Developer Quickstart]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/BarbicanDevStack Running Barbican via DevStack]&lt;br /&gt;
* [https://github.com/cloudkeep-ops/barbican-vagrant-zero/blob/master/README.md Setting up a local Barbican Cluster using Vagrant]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Barbican/Barbican-IDE-Debugging Barbican debugging with IDE]&lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
A good place to start is by reading at the [[How_To_Contribute]] to OpenStack page.  For information on contributing to Astara specifically see the [http://docs.openstack.org/developer/barbican/contribute/getting_involved.html Getting Involved] page in the developer documentation.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=API_Special_Interest_Group&amp;diff=82305</id>
		<title>API Special Interest Group</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=API_Special_Interest_Group&amp;diff=82305"/>
				<updated>2015-06-02T02:02:13Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Status''': Active&lt;br /&gt;
&lt;br /&gt;
'''Organizers''': [mailto:jaypipes@gmail.com Jay Pipes], [mailto:everett.toews@rackspace.com Everett Toews]&lt;br /&gt;
&lt;br /&gt;
==Purpose==&lt;br /&gt;
&lt;br /&gt;
To improve the developer experience of API users by converging the OpenStack API to a consistent and pragmatic RESTful design. The working group creates guidelines that all OpenStack projects should follow for new development, and promotes convergence of new APIs and future versions of existing APIs.&lt;br /&gt;
&lt;br /&gt;
In general we propose, discuss, review, and advocate for API guidelines for all OpenStack Programs to follow. Any member of the working group is able to propose API guidelines. These proposals will be discussed by the working group. When a spec for an API schema is up for review (e.g. a [https://github.com/openstack/nova-specs/tree/master/specs Nova spec] for one of the [https://github.com/openstack/nova/tree/master/nova/api/openstack/compute/schemas/v3 Nova API schemas]), the working group members should review the spec and provide feedback with respect to how well it follows the guidelines. The working group members are also responsible for advocating for following the API guidelines within the OpenStack Programs that they work on.&lt;br /&gt;
&lt;br /&gt;
==How to Join==&lt;br /&gt;
&lt;br /&gt;
To join, add yourself as one of our [[API_Working_Group#Members|Members]] and tune into any of our communication channels below. Reach out to us if you have any questions about [[API_Working_Group#How_to_Contribute|How to Contribute]].&lt;br /&gt;
&lt;br /&gt;
==Communication==&lt;br /&gt;
&lt;br /&gt;
For email, we will use the [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-dev openstack-dev mailing list] and prefix the subject line with [api]. Ideally, any OpenStack developer in any program that is discussing their API will also begin to use the [api] prefix so the working group members can be alerted to relevant discussions.&lt;br /&gt;
&lt;br /&gt;
For IRC, we will use #openstack-api on Freenode.&lt;br /&gt;
&lt;br /&gt;
For the OpenStack Summit, design summit sessions.&lt;br /&gt;
&lt;br /&gt;
For meetings, the [[Meetings/API-WG|API Working Group meetings]].&lt;br /&gt;
&lt;br /&gt;
For cross-project liaisons (the liaison is the first line of contact for the API WG team members), see [[CrossProjectLiaisons#API_Guidelines|Cross-Project Liaisons]]&lt;br /&gt;
&lt;br /&gt;
==Deliverables==&lt;br /&gt;
&lt;br /&gt;
1. Analyze Current Design&lt;br /&gt;
&lt;br /&gt;
This is essentially a way to record and visualize the current design of the APIs. It allows us to bring together many examples of the way APIs are designed so they can be analyzed and act as a discussion point. These are examples of good design to be emulated or bad design to be avoided. It can be examples of where the APIs are consistent or where there are inconsistencies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. Guidelines&lt;br /&gt;
&lt;br /&gt;
Agreed upon and accepted guidelines must be added to version controlled documents in [http://git.openstack.org/cgit/openstack/api-wg/ Git] ([https://github.com/openstack/api-wg GitHub mirror]). Currently proposed changes to the documents can be found in this [https://review.openstack.org/#/q/status:open+project:openstack/api-wg,n,z review report].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. Reviews&lt;br /&gt;
&lt;br /&gt;
Review comments and +1 or -1 votes on code changes and specs that affect any OpenStack Program API. &lt;br /&gt;
&lt;br /&gt;
Identifying code changes and specs that affect APIs will require some vigilance on the part of members. Previously identified changes should carry the '''APIImpact''' flag, which allows them to be discovered by [https://review.openstack.org/#/q/status:open+AND+(message:ApiImpact+OR+message:APIImpact),n,z searching for the APIImpact flag within gerrit]. If they find a review that affects an API, they can email the openstack-dev list (using the [api] prefix) to notify the rest of the members of the review.&lt;br /&gt;
&lt;br /&gt;
We should encourage all OpenStack Programs to adopt the use of an '''APIImpact''' flag in their commit messages.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. Announcement Email&lt;br /&gt;
&lt;br /&gt;
When a new guideline has been accepted, it must be announced to openstack-dev (without the [api] prefix for more visibility). The email must include a link to the guideline and the history (links to the wiki and review) of how it came to be.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. Bugs (DO NOT start doing this yet)&lt;br /&gt;
&lt;br /&gt;
''Let's not run around creating bugs for everyone just yet. How and when we start doing this should be determined in discussions in the meetings and on the list.''&lt;br /&gt;
&lt;br /&gt;
When a new guideline has been accepted, bugs can be filed against APIs that do not follow the guideline. If the bug forces a backwards incompatible change, it would have to be fixed in the next version or microversion of the API. The bug must include a link to the guideline. &lt;br /&gt;
&lt;br /&gt;
==How to Contribute==&lt;br /&gt;
&lt;br /&gt;
Contributions come in the form of the deliverables above. For deliverables 2 and 3, you'll first have to go through the ''If you're a developer'' section of [[How_To_Contribute]].&lt;br /&gt;
&lt;br /&gt;
1. To contribute to analyzing current design:&lt;br /&gt;
&lt;br /&gt;
# Start at [[API_Working_Group/Current_Design|Current Design]]. &lt;br /&gt;
# Find the category of the API design you want to analyze. If it doesn't exist, create it.&lt;br /&gt;
# Edit the wiki page and do the analysis.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For example, you want to analyze the consistency of all of the APIs that do pagination. In the Pagination category, create a table that lists all of the ways APIs do pagination side by side.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. To contribute to the guidelines:&lt;br /&gt;
&lt;br /&gt;
# Follow the [http://docs.openstack.org/infra/manual/developers.html#development-workflow  Development Workflow]&lt;br /&gt;
# When you get to [http://docs.openstack.org/infra/manual/developers.html#starting-work-on-a-new-project Project Setup], start with a &amp;lt;code&amp;gt;git clone git://git.openstack.org/openstack/api-wg.git&amp;lt;/code&amp;gt;&lt;br /&gt;
# Continue with the workflow for your change&lt;br /&gt;
# Use the [http://specs.openstack.org/openstack/api-wg/template.html Example Guideline Template] when creating a completely new guideline&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. To contribute to reviews:&lt;br /&gt;
&lt;br /&gt;
# Find a review on [https://review.openstack.org/ review.openstack.org] that impacts any API (this [https://review.openstack.org/#/q/status:open+AND+(message:ApiImpact+OR+message:APIImpact),n,z review report]).&lt;br /&gt;
# When commenting on the review:&lt;br /&gt;
## Add comments to the review according to the [https://github.com/openstack/api-wg guidelines].&lt;br /&gt;
## Link to the guidelines so the contributor can better understand your reasoning.&lt;br /&gt;
## Feel free to let the contributor know you are a member of the API Working Group.&lt;br /&gt;
## If the contributor disagrees with your review comments, invite them to start a thread on the openstack-dev mailing list with the prefix [api]&lt;br /&gt;
# Vote +1 or -1 on the review&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. To contribute announcement emails:&lt;br /&gt;
&lt;br /&gt;
If you've proposed a guideline and it has been accepted, send an email to openstack-dev to announce it (read #4 above).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. To contribute bugs (DO NOT start doing this yet):&lt;br /&gt;
&lt;br /&gt;
# Find the project in [https://launchpad.net/openstack Launchpad].&lt;br /&gt;
# Go to the bug tracker for that project&lt;br /&gt;
# Report the bug and be sure to click on Extra Options and include the tag &amp;quot;api&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
6. Participate in the discussions at the weekly [[Meetings/API-WG|API Working Group meetings]].&lt;br /&gt;
&lt;br /&gt;
==Scope==&lt;br /&gt;
&lt;br /&gt;
===In Scope===&lt;br /&gt;
&lt;br /&gt;
The API Working Group is focused on creating guidelines for the HTTP APIs that expose the features to the application developers/operators using those APIs. It is not concerned with the implementation of those APIs.&lt;br /&gt;
&lt;br /&gt;
These are guidelines for both going forward and for providing input (bugs) into the current version of existing APIs. When reporting bugs to the current version of existing APIs, the intent isn't to actually change the current version but to improve the next version of the API.&lt;br /&gt;
&lt;br /&gt;
Recommending the use of an API definition format (e.g. Swagger, RAML, API Blueprint) to drive both the implementation of the service and the client.&lt;br /&gt;
&lt;br /&gt;
===Out of Scope===&lt;br /&gt;
&lt;br /&gt;
Third-party apis (e.g. EC2, S3, OCCI, etc.) are out of scope.&lt;br /&gt;
&lt;br /&gt;
There is the related [[Application_Ecosystem_Working_Group]] (AE WG). The API Working Group (API WG) is complementary to the End User Working Group. The API WG is focused on creating guidelines for the APIs whereas AE WG is focused on creating applications that consume the APIs. The place where these groups meet in the middle is the API, which forms the contract between the two. Members of the AE WG are encouraged to be members of the API WG and vice versa.&lt;br /&gt;
&lt;br /&gt;
==FAQ==&lt;br /&gt;
&lt;br /&gt;
Q. My OpenStack Program doesn't have an API schema or a spec review process (like [https://github.com/openstack/nova-specs Nova's]). What do I do?&lt;br /&gt;
&lt;br /&gt;
A. Propose that your OpenStack Program adopt an API schema language and spec review process. The best way to give the API Working Group some teeth is by reviewing specs of API schemas. Commenting on reviews and giving a +1 or -1 to APIs that follow or don't follow the API guidelines will give this working group the potential to affect real change in OpenStack.&lt;br /&gt;
&lt;br /&gt;
==Members==&lt;br /&gt;
&lt;br /&gt;
Please add yourself to this list if you are committed to making the OpenStack APIs better. &lt;br /&gt;
&lt;br /&gt;
* [mailto:mr.alex.meade@gmail.com Alex Meade]&lt;br /&gt;
* [mailto:jaypipes@gmail.com Jay Pipes]&lt;br /&gt;
* [mailto:everett.toews@rackspace.com Everett Toews]&lt;br /&gt;
* [mailto:dtroyer@gmail.com Dean Troyer]&lt;br /&gt;
* [http://www.openstack.org/community/members/profile/2535 Salvatore Orlando]&lt;br /&gt;
* [mailto:lbragstad@gmail.com Lance Bragstad]&lt;br /&gt;
* [mailto:anne.gentle@rackspace.com Anne Gentle]&lt;br /&gt;
* [mailto:ian.cordasco@rackspace.com Ian Cordasco]&lt;br /&gt;
* [mailto:huangzhipeng@huawei.com Zhipeng Huang]&lt;br /&gt;
* [mailto:ed@leafe.com Ed Leafe]&lt;br /&gt;
* [mailto:maty.grosz@alcatel-lucent.com Maty Grosz]&lt;br /&gt;
* [mailto:taget@linux.vnet.ibm.com Eli Qiao]&lt;br /&gt;
* [mailto:soulxu@gmail.com Alex Xu]&lt;br /&gt;
* [mailto:chdent@redhat.com Chris Dent]&lt;br /&gt;
* [mailto:constanze.kratel@rackspace.com Constanze Kratel]&lt;br /&gt;
* [mailto:sam.harwell@rackspace.com Sam Harwell]&lt;br /&gt;
* [mailto:ghanshyammann@gmail.com Ghanshyam Mann]&lt;br /&gt;
* [mailto:lisa.clark@rackspace.com Lisa Clark]&lt;br /&gt;
* [mailto:kevin.mitchell@rackspace.com Kevin Mitchell]&lt;br /&gt;
* [mailto:shaunak.kashyap@rackspace.com Shaunak Kashyap]&lt;br /&gt;
* [mailto:oomichi@mxs.nes.nec.co.jp Ken'ichi Ohmichi]&lt;br /&gt;
* [mailto:dstanek@dstanek.com David Stanek]&lt;br /&gt;
* [mailto:msm@redhat.com Michael McCune]&lt;br /&gt;
* [mailto:dolph.mathews@gmail.com Dolph Mathews]&lt;br /&gt;
* [mailto:ericnielsenphd@gmail.com Eric Nielsen]&lt;br /&gt;
* [http://www.openstack.org/community/members/profile/1778 Brian Rosmaita]&lt;br /&gt;
* [mailto:zack.shoylev@rackspace.com Zack Shoylev]&lt;br /&gt;
* [mailto:miguel.grinberg@gmail.com Miguel Grinberg]&lt;br /&gt;
* [mailto:graham.hayes@hp.com Graham Hayes]&lt;br /&gt;
* [mailto:christopher.lefelhoc@rackspace.com Christopher Lefelhocz]&lt;br /&gt;
* [mailto:lucasagomes@gmail.com Lucas Alvares Gomes]&lt;br /&gt;
* [http://www.openstack.org/community/members/profile/8436 Jason Zhang]&lt;br /&gt;
* [mailto:steve.lewis@rackspace.com Steve Lewis]&lt;br /&gt;
* [mailto:kaufer@us.ibm.com Steven Kaufer]&lt;br /&gt;
* [mailto:ryansb@redhat.com Ryan Brown]&lt;br /&gt;
* [http://www.openstack.org/community/members/profile/1657 Adrian Otto]&lt;br /&gt;
* [mailto:maishsk@gmail.com Maish Saidel-Keesing]&lt;br /&gt;
* [mailto:eglynn@redhat.com Eoghan Glynn]&lt;br /&gt;
* [http://www.openstack.org/community/members/profile/14334 Matthew Gilliard]&lt;br /&gt;
* [mailto:erictchiu@gmail.com Eric Chiu]&lt;br /&gt;
* [mailto:jianlonghei@gmail.com Park Hei]&lt;br /&gt;
* [mailto:bmorel@internap.com Bruno Morel]&lt;br /&gt;
* [mailto:ericnielsenphd@gmail.com Eric Nielsen]&lt;br /&gt;
* [mailto:jxstanford@solinea.com John Stanford]&lt;br /&gt;
* [mailto:mark@mcclain.xyz Mark McClain]&lt;br /&gt;
&lt;br /&gt;
[[Category: Working_Groups]]&lt;br /&gt;
[[Category:UserCommittee]]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Sprints/NeutronKiloSprint&amp;diff=67666</id>
		<title>Sprints/NeutronKiloSprint</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Sprints/NeutronKiloSprint&amp;diff=67666"/>
				<updated>2014-11-11T18:37:52Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Attendees */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Date ===&lt;br /&gt;
Monday-Wednesday, December 8-10&lt;br /&gt;
   &lt;br /&gt;
=== Location ===&lt;br /&gt;
    Adobe Systems Incorporated&lt;br /&gt;
    3900 Adobe Way&lt;br /&gt;
    Lehi, UT 84043&lt;br /&gt;
    Tel: 385-345-0000&lt;br /&gt;
    &lt;br /&gt;
=== Nearby airport: ===&lt;br /&gt;
SLC (Salt Lake City)&lt;br /&gt;
&lt;br /&gt;
=== Nearby Hotels ===&lt;br /&gt;
    &lt;br /&gt;
=== Agenda ===&lt;br /&gt;
The agenda for this mid-cyle is focused on two things:&lt;br /&gt;
Paying down technical debt with a focused coding sprint.&lt;br /&gt;
Focus on the vendor split and the logistics around this.&lt;br /&gt;
Building community by encouraging cross polination and sharing of ideas.&lt;br /&gt;
&lt;br /&gt;
To this end, we'll break into groups and focus on targeted work to make progress on various refactoring tasks. We will have multiple core reviewers there for encouraging quick iterations. We will also have a representative from QA and infra there to assist with onboarding folks for things like gate triage, elastic-recheck, etc.&lt;br /&gt;
&lt;br /&gt;
=== Attendees ===&lt;br /&gt;
# Kyle Mestery&lt;br /&gt;
# Henry Gessau&lt;br /&gt;
# Mark McClain&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67396</id>
		<title>Design Summit/Kilo/Etherpads</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67396"/>
				<updated>2014-11-06T16:37:17Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Thu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Summit]]&lt;br /&gt;
[[Category:Kilo]]&lt;br /&gt;
[[Category:Etherpad]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:3;-moz-column-count:3;-webkit-column-count:3&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Cross-Project workshops==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 11:15 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-api-wg API Working Group] (double slot)&lt;br /&gt;
* 11:15 - 11:55 - [https://etherpad.openstack.org/p/uuid_for_test_Cases RefStack, DefCore, Refstack Interoperability, and Tempest]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-move-func-tests-to-projects Moving Functional Tests to Projects]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-ha-integration How to provide HA in a central manner]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-specs Specs: The Good, Bad, and the Ugly]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-upgrades-and-versioning Dealing with RPC and DB changes during upgrade.]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-notifications Schema and Schema Validation for Notifications]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scale-out-openstack Approaches for Scaling Out]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-requirements  Changes to our Requirements Management Policy]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-crossproject-log-rationalization Log Rationalization]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-how-to-tackle-debt How to Tackle Technical Debt in Kilo]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-crossproject-end-user-experience-sdks End user experience, SDKs]&lt;br /&gt;
 &lt;br /&gt;
* 16:40 - 18:00 - [https://etherpad.openstack.org/p/kilo-crossproject-growth-challenges Growth Challenges] (double slot)&lt;br /&gt;
* 17:20 - 18:00 [https://etherpad.openstack.org/p/paris_translators_meetup Translation/i18n]&lt;br /&gt;
&lt;br /&gt;
* 17:30 - 18:20 - [https://etherpad.openstack.org/p/kilo-crossproject-larger-policy-discussion]&lt;br /&gt;
&lt;br /&gt;
==Barbican==&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/barbican-kilo-integration Integration discussion with other OpenStack projects]&lt;br /&gt;
* Tues 15:40 - 16:20 - [https://etherpad.openstack.org/p/barbican-kilo-certificate-orders Common Certificate Issuance API]&lt;br /&gt;
* Tues 17:30 - 18:10 - [https://etherpad.openstack.org/p/barbican-kilo-entity-auth Per-User Entity-Level Authorization]&lt;br /&gt;
&lt;br /&gt;
==Ceilometer==&lt;br /&gt;
* Wed 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-ceilometer-functional-tests Switchover to in-tree functional tests]&lt;br /&gt;
* Thurs 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-gnocchi-integration Bringing Gnocchi and Ceilometer together]&lt;br /&gt;
* Thurs 9:50  - 10:30 - [https://etherpad.openstack.org/p/gnocchi-influxdb-opentsdb-mapping Mapping gnocchi semantics to InfluxDB/OpenTSDB]&lt;br /&gt;
* Thurs 11:00 - 11:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-monasca-collaboration Areas to target for collaboration with Monasca]&lt;br /&gt;
* Thurs 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-ceilometer-persistent-pipeline-cfg Persistent pipeline config] / [https://etherpad.openstack.org/p/kilo-ceilometer-kafka-publisher Kafka publisher]&lt;br /&gt;
* Thurs 13:40 - 14:20 - [https://etherpad.openstack.org/p/kilo-ceilometer-notifications-as-contract Notifications-as-a-contract]&lt;br /&gt;
* Fri 09:00 - 12:30, 13:40 - 17:10 - [https://etherpad.openstack.org/p/kilo-ceilometer-contributors-meetup Contributors Meetup]&lt;br /&gt;
&lt;br /&gt;
==Cinder==&lt;br /&gt;
&lt;br /&gt;
* Wednesday, November 5 • 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-cinder-async-reporting Async Error Reporting]&lt;br /&gt;
* Wednesday, November 5 • 9:50 - 10:30 - [https://etherpad.openstack.org/p/eAhp48wsIi Cinder Automated Discovery] &lt;br /&gt;
* Wednesday, November 5 • 11:50 - 12:30 - [https://etherpad.openstack.org/p/cinder-rpc-version-clamp Cinder RPC version clamp]&lt;br /&gt;
* Wednesday, November 5 • 13:50 - 14:30 - [https://etherpad.openstack.org/p/objectify-cinder Objectify Cinder]&lt;br /&gt;
* Wednesday, November 5 • 14:40 - 15:20 - [https://etherpad.openstack.org/p/cinder-enforcement-of-states Cinder State Machine] [http://kilodesignsummit.sched.org/event/58baf2d2de8b4b32117c645c224c4fe1#.VFQZdPTF_3H Description]&lt;br /&gt;
* Wednesday, November 5 • 15:30 - 16:10 - [https://etherpad.openstack.org/p/kilo-cinder-over-subscription Over Subscription in Thin Provisioning] / [https://etherpad.openstack.org/p/kilo-cinder-capacity-headroom Capacity Headroom]&lt;br /&gt;
&lt;br /&gt;
==Designate==&lt;br /&gt;
* https://etherpad.openstack.org/p/designate-kilo-summit-ifxr-session&lt;br /&gt;
* https://review.openstack.org/#/c/132638/ Incremental Zone transfer&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* Thurs 09:00 - 10:30 - [https://etherpad.openstack.org/p/kilo-summit-ops-docs Ops Documentation]&lt;br /&gt;
* Friday 09:00 - 12:00 [https://etherpad.openstack.org/p/docstopicsparissummit Remaining docs topics in the pod]&lt;br /&gt;
&lt;br /&gt;
==Glance==&lt;br /&gt;
* Wed 13:50 - 14:10 [https://etherpad.openstack.org/p/kilo-glance-image-conversion Image Conversion]&lt;br /&gt;
* Wed 14:10 - 14:30 [https://etherpad.openstack.org/p/kilo-glance-ovf-ova-support OVF/OVA Support]&lt;br /&gt;
* Wed 14:40 - 15:00 [https://etherpad.openstack.org/p/kilo-glance-catalog-index-service Catalog indexing]&lt;br /&gt;
* Wed 15:00 - 15:20 [https://etherpad.openstack.org/p/kilo-glance-artifacts-current-state-of-development Artifacts]&lt;br /&gt;
* Wed 15:30 - 16:10 [https://etherpad.openstack.org/p/kilo-glance-modularity-endpoints-processes-catalog Glance modularity, different endpoints, etc.]&lt;br /&gt;
* Wed 16:30 - 17:10 [https://etherpad.openstack.org/p/kilo-glance-logging-supportability-error-codes Glance supportability, logging and error codes]&lt;br /&gt;
&lt;br /&gt;
* Fri 13:40 - 14:10 [https://etherpad.openstack.org/p/kilo-glance-mission-statement Glance mission statement]&lt;br /&gt;
* Fri 14:10 - 14:50 [https://etherpad.openstack.org/p/kilo-glance-image-conversion More image conversion]&lt;br /&gt;
* Fri 15:00 - 15:40 [https://etherpad.openstack.org/p/kilo-glance-cinder-driver What to do about the cinder driver?]&lt;br /&gt;
* Fri 15:40 - 16:40 [https://etherpad.openstack.org/p/kilo-glance-roadmapping Roadmapping and general architecture discussion]&lt;br /&gt;
&lt;br /&gt;
==Heat==&lt;br /&gt;
* Wed 13:50 – 14:30 [https://etherpad.openstack.org/p/kilo-heat-testing Heat integration strategy, functional &amp;amp; unit tests]&lt;br /&gt;
* Wed 14:40 – 15:20 [https://etherpad.openstack.org/p/kilo-heat-upgrades Heat Upgrades (testing, status, zero downtime)]&lt;br /&gt;
* Wed 15:30 – 16:10 [https://etherpad.openstack.org/p/kilo-heat-convergence Heat Convergence - resolving any questions]&lt;br /&gt;
* Wed 16:30 – 17:10 [https://etherpad.openstack.org/p/kilo-heat-autoscaling Heat Autoscaling API]&lt;br /&gt;
* Wed 17:20 – 18:00 [https://etherpad.openstack.org/p/kilo-heat-containers Heat and Containers]&lt;br /&gt;
&lt;br /&gt;
* Thurs 09:00 – 9:40 [https://etherpad.openstack.org/p/kilo-heat-usability-template Heat Template format usability improvements]&lt;br /&gt;
* Thurs 09:50 – 10:30 [https://etherpad.openstack.org/p/kilo-heat-usability-general Heat API and general usability improvements]&lt;br /&gt;
&lt;br /&gt;
==Horizon==&lt;br /&gt;
* Wed 1440 – 1520 [https://etherpad.openstack.org/p/kilo-horizon-operators-users Operators, Deployers and Users]&lt;br /&gt;
* Wed 1530 – 1610 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Horizon/Keystone Cross Topic Session]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thurs 950 – 1030 [https://etherpad.openstack.org/p/kilo-horizon-django-angular-playing-nice Django-Angular Playing Nice]&lt;br /&gt;
* Thurs 1100 – 1140 [https://etherpad.openstack.org/p/kilo-horizon-clientside-data Clientside Data]&lt;br /&gt;
* Thurs 1630 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-customize-extend Making Horizon easier to customize and extend]&lt;br /&gt;
* Thurs 1720 – 1800 [https://etherpad.openstack.org/p/kilo-horizon-ux UX and Horizon]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-contributors-meetup Contributors Meetup]&lt;br /&gt;
&lt;br /&gt;
==Infrastructure==&lt;br /&gt;
&lt;br /&gt;
* Tue 1640 - 1720 [https://etherpad.openstack.org/p/kilo-third-party-items Third-party CI]&lt;br /&gt;
* Wed 0950 - 1030 [https://etherpad.openstack.org/p/kilo-infra-manual Infra Manual]&lt;br /&gt;
* Wed 1350 - 1430 [https://etherpad.openstack.org/p/kilo-infra-afs Infra AFS]&lt;br /&gt;
* Thu 1100 - 1140 [https://etherpad.openstack.org/p/kilo-translations Translations Tools]&lt;br /&gt;
* Thu 1520 - 1600 [https://etherpad.openstack.org/p/kilo-infra-storyboard Storyboard]&lt;br /&gt;
&lt;br /&gt;
==Ironic==&lt;br /&gt;
* Wed 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-exposing-different-capabilities Exposing Different Capabilities]&lt;br /&gt;
* Wed 0950 - 1030 [https://etherpad.openstack.org/kilo-ironic-resource-locking Resource Locking]&lt;br /&gt;
* Wed 1100 - 1140 [https://etherpad.openstack.org/kilo-ironic-making-it-simple Making Ironic Easier to Use]&lt;br /&gt;
* Wed 1150 - 1230 [https://etherpad.openstack.org/kilo-ironic-understanding-hardware Understanding the Hardware we have]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-asserting-ready-state Asserting Ready State]&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 - 1710 [https://etherpad.openstack.org/kilo-ironic-contributor-meetup Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Keystone==&lt;br /&gt;
* Wed 0900 – 0940 [https://etherpad.openstack.org/p/kilo-keystone-object-lifecycle Object Lifecycle / Object Dependencies]&lt;br /&gt;
* Wed 0950 – 1030 [https://etherpad.openstack.org/p/hierarchical-multitenancy-kilo-summit Hierarchical Multitenancy]&lt;br /&gt;
* Wed 1630 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Keystone-Horizon-CLI Federation/SSO]&lt;br /&gt;
* Wed 1720 – 1800 [https://etherpad.openstack.org/p/kilo-keystone-operators-deployers-and-devops Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 9040 [https://etherpad.openstack.org/p/kilo-keystone-python-keystoneclient python-keystoneclient]&lt;br /&gt;
* Thu 1430 – 1510 [https://etherpad.openstack.org/p/kilo-keystone-authorization Authorization]&lt;br /&gt;
* Thu 1520 – 1600 [https://etherpad.openstack.org/p/kilo-keystone-policy-model-token-capabilities Policy Model and User/Token Capabilities]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-meetup Keystone Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Manila==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-manila-networking-and-multitenancy Networking and Multitenancy]&lt;br /&gt;
* 16:40 - 17:20 - [https://etherpad.openstack.org/p/kilo-manila-mount-automation Mount Automation]&lt;br /&gt;
* 17:30 - 18:10 - [https://etherpad.openstack.org/p/kilo-manila-access-groups Access Groups]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Neutron==&lt;br /&gt;
=== Tue ===&lt;br /&gt;
Neutron contributors please attend [https://wiki.openstack.org/wiki/Summit/Kilo/Etherpads#Cross-Project_workshops Cross Project Workshops]&lt;br /&gt;
&lt;br /&gt;
* 12.05 - 12.45 - [https://etherpad.openstack.org/p/kilo-gbp-design-summit-topics Group-based Policy]&lt;br /&gt;
&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 09:00 - 09:40 - [https://etherpad.openstack.org/p/neutron-processes Development Process and Procedures]&lt;br /&gt;
* 09:50 - 10:30 - [https://etherpad.openstack.org/p/aE7ydRU35m Split Vendor Plugins and Drivers] Part 1&lt;br /&gt;
* 11:00 - 11:50 - [https://etherpad.openstack.org/p/aE7ydRU35m Split Vendor Plugins and Drivers] Part 2&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-cli CLI and Client Lib]&lt;br /&gt;
&lt;br /&gt;
=== Thu ===&lt;br /&gt;
* 11:00 - 11:40 - [https://etherpad.openstack.org/p/neutron-kilo-lightning-talks Lightning Talks]&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-services Advanced Services Spin Out]&lt;br /&gt;
* 13:40 - 14:20 - [https://etherpad.openstack.org/p/neutron-rest-api REST/RPC/Plugin API] Part 1 (REST)&lt;br /&gt;
* 14:30 - 15:10 - [https://etherpad.openstack.org/p/neutron-rpc-api REST/RPC/Plugin API] Part 2 (RPC)&lt;br /&gt;
* 15:20 - 16:00 - [https://etherpad.openstack.org/p/neutron-plugin-api REST/RPC/Plugin API] Part 3 (Plugin)&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/neutron-ipam Pluggable IPAM]&lt;br /&gt;
* 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-neutron-agents-technical-debt Paying down technical debt in L2 and L3 Agents]&lt;br /&gt;
&lt;br /&gt;
=== Fri ===&lt;br /&gt;
* 09:00 - 12:30 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
* 13:40 - 17:10 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
&lt;br /&gt;
==Nova==&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 9:00 - 10:30 - [https://etherpad.openstack.org/p/kilo-nova-cells  Cells 1 &amp;amp; 2] &lt;br /&gt;
* 11:00 - 11:40 - [https://etherpad.openstack.org/p/kilo-nova-objects Nova Objects Status and Deadlines]&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-glance Nova/Glance client library]&lt;br /&gt;
* 13:50 - 14:30 - [https://etherpad.openstack.org/p/kilo-nova-summit-unconference Nova Unconference]&lt;br /&gt;
* 14:40 - 15:20 - [https://etherpad.openstack.org/p/nova-ci-status-checkpoint-kilo Nova CI status checkpoint]&lt;br /&gt;
* 15:30 - 16:10 - [https://etherpad.openstack.org/p/kilo-nova-virt-driver-consistency Virt Driver Consistency]&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/kilo-nova-functional-testing Nova Functional testing]&lt;br /&gt;
* 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-nova-nfv NFV proposed specs]&lt;br /&gt;
&lt;br /&gt;
=== Thurs ===&lt;br /&gt;
* 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-nova-microversions API Microversions]&lt;br /&gt;
* 9:50 - 10:30 - [https://etherpad.openstack.org/p/kilo-nova-nova-network-to-neutron nova-network migration]&lt;br /&gt;
* 11:00 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-scheduler-rt Scheduler and resource tracker] &lt;br /&gt;
* 13:40 - 14:30 - [https://etherpad.openstack.org/p/kilo-nova-summit-unconference Nova Unconference]&lt;br /&gt;
* 14:30 - 15:10 - [https://etherpad.openstack.org/p/kilo-nova-zero-downtime-upgrades Nova Upgrades and DB migrations]&lt;br /&gt;
* 15:20 - 16:00 - [https://etherpad.openstack.org/p/kilo-containers-service Containers service]&lt;br /&gt;
* 16:30 - 18:00 - [https://etherpad.openstack.org/p/kilo-nova-priorities Setting nova's roadmap for Kilo 1 &amp;amp; 2]&lt;br /&gt;
&lt;br /&gt;
==Oslo==&lt;br /&gt;
* Wed 2014-11-05 11:00  - [https://etherpad.openstack.org/p/kilo-oslo-library-proposals Oslo graduation schedule]&lt;br /&gt;
* Wed 2014-11-05 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-oslo.messaging oslo.messaging ]&lt;br /&gt;
* Wed 2014-11-05 13:50  - [https://etherpad.openstack.org/p/kilo-oslo-common-quota-library A Common Quota Management Library]&lt;br /&gt;
* Thu 2014-11-06 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-taskflow taskflow]&lt;br /&gt;
* Thu 2014-11-06 13:40  - [https://etherpad.openstack.org/p/kilo-oslo-alpha-versioning Using alpha versioning for Oslo libraries]&lt;br /&gt;
* Thu 2014-11-06 16:30  - [https://etherpad.openstack.org/p/kilo-oslo-python-3 Python 3 support in Oslo]&lt;br /&gt;
* Thu 2014-11-06 17:20  - [https://etherpad.openstack.org/p/kilo-oslo-namespace-packages Moving Oslo away from namespace packages]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==QA==&lt;br /&gt;
* Wed 9:00 - 9:40 [https://etherpad.openstack.org/p/kilo-summit-gap-analysis-tempest-in-production Gap Analysis for using Tempest in Production]&lt;br /&gt;
* Wed 11:00 - 11:40 [https://etherpad.openstack.org/p/kilo-summit-tempest-scope-in-the-brave-new-world Tempest Scope in the Brave New World]&lt;br /&gt;
* Wed 14:40 - 15:20 [https://etherpad.openstack.org/p/kilo-gating-relationships QA/Infra Gating Relationships]&lt;br /&gt;
* Wed 15:30 - 16:10 [https://etherpad.openstack.org/p/kilo-summit-post-merge-qa-ci QA and CI After Merge]&lt;br /&gt;
* Wed 17:20 - 18:00 [https://etherpad.openstack.org/p/kilo-summit-tempest-lib-moving-forward Tempest-lib moving forward]&lt;br /&gt;
* Thu 11:50 - 12:30 [https://etherpad.openstack.org/p/kilo-summit-future-auth-interface-design Future Auth Interface Design]&lt;br /&gt;
* Thu 14:30 - 13:10 [https://etherpad.openstack.org/p/kilo-summit-devstack-grenade Devstack/Grenade]&lt;br /&gt;
&lt;br /&gt;
==Release Management==&lt;br /&gt;
* Wed 1150 – 1230 [https://etherpad.openstack.org/p/kilo-relmgt-stable-branches Stable branches]&lt;br /&gt;
* Thu 0950 – 1030 [https://etherpad.openstack.org/p/kilo-relmgt-vulnerability-management Vulnerability management]&lt;br /&gt;
&lt;br /&gt;
==Sahara==&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-edp&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-ux&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production-clusters&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-integration-security&lt;br /&gt;
&lt;br /&gt;
==Swift==&lt;br /&gt;
* Thursday 11:50 [https://etherpad.openstack.org/p/kilo-swift-ec-overview EC Overview]&lt;br /&gt;
* Thursday 13:40 [https://etherpad.openstack.org/p/kilo-swift-service-tokens Service Tokens]&lt;br /&gt;
* Thursday 14:30 [https://etherpad.openstack.org/p/kilo-swift-single-process Single Service Process Optimizations]&lt;br /&gt;
* Thursday 15:20 [https://etherpad.openstack.org/p/kilo-swift-on-disk-encryption On-Disk Encryption]&lt;br /&gt;
* Thursday 16:30 [https://etherpad.openstack.org/p/kilo-swift-swiftclient Status of python-swiftclient]&lt;br /&gt;
* Thursday 17:20 [https://etherpad.openstack.org/p/kilo-swift-ops-feedback Ops Feedback Session]&lt;br /&gt;
* Friday 09:00 [https://etherpad.openstack.org/p/kilo-swift-contributors-meetup Contributors Meetup]&lt;br /&gt;
&lt;br /&gt;
==TripleO==&lt;br /&gt;
* Wednesday  16:30-17:10 TripleO [https://etherpad.openstack.org/p/kilo-summit-tripleo-onramps Onramps and new implementations]&lt;br /&gt;
* Thursday  13:40-14:20 TripleO [https://etherpad.openstack.org/p/tripleo-kilo-l3-and-cinder-ha L3 Networking and Cinder HA]&lt;br /&gt;
* Friday  All Day TripleO [https://etherpad.openstack.org/p/kilo-tripleo-summit-topics TripleO Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Trove==&lt;br /&gt;
Trovesday (Thursday)&amp;lt;br /&amp;gt;&lt;br /&gt;
14:30 - 15:10: [https://etherpad.openstack.org/p/kilo-summit-trove-clusters Building Out Trove Clusters]&amp;lt;br /&amp;gt;&lt;br /&gt;
15:20 - 16:00: [https://etherpad.openstack.org/p/kilo-summit-trove-replication-v2 Replication v2 and Scheduling Tasks in Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
16:30 - 17:10: [https://etherpad.openstack.org/p/kilo-summit-testing-trove Testing Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
17:20 - 18:00: [https://etherpad.openstack.org/p/kilo-summit-trove-openstack-tighter-integration Trove integration with other OpenStack components]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Zaqar==&lt;br /&gt;
* Tuesday 11:15 [https://etherpad.openstack.org/p/kilo-zaqar-summit-integration-with-services Zaqar integration with other services] &lt;br /&gt;
* Tuesday 12:05 [https://etherpad.openstack.org/p/kilo-zaqar-summit-v2 Zaqar API v2: What? Why? When?]&lt;br /&gt;
* Tuesday 14:00 [https://etherpad.openstack.org/p/kilo-zaqar-summit-persistent-transports Zaqar Persistent Transports]&lt;br /&gt;
* Tuesday 14:50 [https://etherpad.openstack.org/p/kilo-zaqar-summit-infrastructure Zaqar Infrastructure Session]&lt;br /&gt;
&lt;br /&gt;
==Other Projects==&lt;br /&gt;
* Monday 11:40 - 13:10 [https://etherpad.openstack.org/p/kilo-ceph Ceph]&lt;br /&gt;
* Monday 14:30 - 16:00 [https://etherpad.openstack.org/p/kilo-ansible-for-openstack Ansible for OpenStack]&lt;br /&gt;
* Monday 16:20 - 17:50 [https://etherpad.openstack.org/p/puppet-openstack-paris-agenda puppet-openstack design session]&lt;br /&gt;
* Monday 16:30 - 18:30 [https://etherpad.openstack.org/p/paris-product-meeting Product Management session]&lt;br /&gt;
* Tuesday 14:00 - 14:40 [https://etherpad.openstack.org/p/kilo-poppy-summit Poppy design session]&lt;br /&gt;
* Tuesday 15.40 - 16.20 [https://etherpad.openstack.org/p/paris-2014-design-summit-mistral Mistral design session]&lt;br /&gt;
* Tuesday 16:40 - 17:20 [https://etherpad.openstack.org/p/kilo-murano-design-session Murano design session]&lt;br /&gt;
* Tuesday 16:40 - 18:10 [https://etherpad.openstack.org/p/par-kilo-congress-design-session Congress design session]&lt;br /&gt;
&lt;br /&gt;
==Event intro/closure==&lt;br /&gt;
* Tue 1115 – 1155 [https://etherpad.openstack.org/p/kilo-summit-101 Summit 101]&lt;br /&gt;
* Fri 1720 – 1800 [https://etherpad.openstack.org/p/kilo-summit-feedback Design Summit feedback]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Ops==&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pain Top 10 Pain points from the user survey - how to fix them?]&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pets What is the best practice for managing 'pets'?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-logging How do we fix logging?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-dvr Distributed Virtual Router - finally neutron HA!]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-ironic What do you want from ironic/bare metal?]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-containers What do we want from containers/docker?]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture-upgrades Architecture Show and Tell - Upgrades Special Edition]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-ha High availability - how do you do it?]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture Architecture Show and Tell]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-get-involved How to get involved in Kilo?]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-storage Storage - how do you do it?]&lt;br /&gt;
&lt;br /&gt;
* Wed 1440 - 1520 [http://kilodesignsummit.sched.org/event/3406e6331bd488329eaf9af7406bdc95 Horizon Operators, Deployers and End Users]&lt;br /&gt;
* Wed 1720 - 1800 [http://kilodesignsummit.sched.org/event/e78766659871928319d63259167efdd6 Keystone Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-log-rationalisation Log Rationalisation]&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-docs Documentation] &lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-telco Telco WG]&lt;br /&gt;
&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-monitoring Monitoring]&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-upgrades Upgrades]&lt;br /&gt;
* Thu 1100 – 1140   [https://etherpad.openstack.org/p/kilo-summit-ops-stable-branch Stable Branch]&lt;br /&gt;
* Thu 1150 – 1230   [https://etherpad.openstack.org/p/Chef-Ops-Paris Chef]&lt;br /&gt;
&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-blueprints Blueprints Working Group]&lt;br /&gt;
* Thu 1340 – 1500   [https://etherpad.openstack.org/p/kilo-summit-ops-tools Ops Tools working group]&lt;br /&gt;
* Thu 1510 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-puppet Puppet]&lt;br /&gt;
&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-large-deployments Large Deployments Team]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-api API Working Group]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-enterprise Win The Enterprise Working Group]&lt;br /&gt;
&lt;br /&gt;
*Thu 1720 - 1800  [https://etherpad.openstack.org/p/kilo-swift-ops-feedback Swift Ops Feedback Session]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67301</id>
		<title>Design Summit/Kilo/Etherpads</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67301"/>
				<updated>2014-11-05T09:27:18Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Wed */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Summit]]&lt;br /&gt;
[[Category:Kilo]]&lt;br /&gt;
[[Category:Etherpad]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:3;-moz-column-count:3;-webkit-column-count:3&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Cross-Project workshops==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 11:15 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-api-wg API Working Group] (double slot)&lt;br /&gt;
* 11:15 - 11:55 - [https://etherpad.openstack.org/p/uuid_for_test_Cases RefStack, DefCore, Refstack Interoperability, and Tempest]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-move-func-tests-to-projects Moving Functional Tests to Projects]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-ha-integration How to provide HA in a central manner]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-specs Specs: The Good, Bad, and the Ugly]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-upgrades-and-versioning Dealing with RPC and DB changes during upgrade.]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-notifications Schema and Schema Validation for Notifications]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scale-out-openstack Approaches for Scaling Out]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-requirements  Changes to our Requirements Management Policy]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-crossproject-log-rationalization Log Rationalization]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-how-to-tackle-debt How to Tackle Technical Debt in Kilo]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-crossproject-end-user-experience-sdks End user experience, SDKs]&lt;br /&gt;
 &lt;br /&gt;
* 16:40 - 18:00 - [https://etherpad.openstack.org/p/kilo-crossproject-growth-challenges Growth Challenges] (double slot)&lt;br /&gt;
* 17:20 - 18:00 [https://etherpad.openstack.org/p/paris_translators_meetup Translation/i18n]&lt;br /&gt;
&lt;br /&gt;
* 17:30 - 18:20 - [https://etherpad.openstack.org/p/kilo-crossproject-larger-policy-discussion]&lt;br /&gt;
&lt;br /&gt;
==Barbican==&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/barbican-kilo-integration Integration discussion with other OpenStack projects]&lt;br /&gt;
* Tues 15:40 - 16:20 - [https://etherpad.openstack.org/p/barbican-kilo-certificate-orders Common Certificate Issuance API]&lt;br /&gt;
* Tues 17:30 - 18:10 - [https://etherpad.openstack.org/p/barbican-kilo-entity-auth Per-User Entity-Level Authorization]&lt;br /&gt;
&lt;br /&gt;
==Ceilometer==&lt;br /&gt;
* Wed 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-ceilometer-functional-tests Switchover to in-tree functional tests]&lt;br /&gt;
* Thurs 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-gnocchi-integration Bringing Gnocchi and Ceilometer together]&lt;br /&gt;
* Thurs 9:50  - 10:30 - [https://etherpad.openstack.org/p/gnocchi-influxdb-opentsdb-mapping Mapping gnocchi semantics to InfluxDB/OpenTSDB]&lt;br /&gt;
* Thurs 11:00 - 11:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-monasca-collaboration Areas to target for collaboration with Monasca]&lt;br /&gt;
* Thurs 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-ceilometer-persistent-pipeline-cfg Persistent pipeline config] / [https://etherpad.openstack.org/p/kilo-ceilometer-kafka-publisher Kafka publisher]&lt;br /&gt;
* Thurs 13:40 - 14:20 - [https://etherpad.openstack.org/p/kilo-ceilometer-notifications-as-contract Notifications-as-a-contract]&lt;br /&gt;
&lt;br /&gt;
==Cinder==&lt;br /&gt;
&lt;br /&gt;
* Wednesday, November 5 • 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-cinder-async-reporting Async Error Reporting]&lt;br /&gt;
* Wednesday, November 5 • 9:50 - 1:30 - [https://etherpad.openstack.org/p/eAhp48wsIi Cinder Automated Discovery] &lt;br /&gt;
* Wednesday, November 5 • 13:50 - 14:30 - [https://etherpad.openstack.org/p/objectify-cinder Objectify Cinder]&lt;br /&gt;
* Wednesday, November 5 • 14:40 - 15:20 - [https://etherpad.openstack.org/p/cinder-enforcement-of-states Cinder State Machine] [http://kilodesignsummit.sched.org/event/58baf2d2de8b4b32117c645c224c4fe1#.VFQZdPTF_3H Description]&lt;br /&gt;
* Wednesday, November 5 • 15:30 - 16:10 - [https://etherpad.openstack.org/p/kilo-cinder-over-subscription Over Subscription in Thin Provisioning] / [https://etherpad.openstack.org/p/kilo-cinder-capacity-headroom Capacity Headroom]&lt;br /&gt;
&lt;br /&gt;
==Designate==&lt;br /&gt;
* https://etherpad.openstack.org/p/designate-kilo-summit-ifxr-session&lt;br /&gt;
* https://review.openstack.org/#/c/132638/ Incremental Zone transfer&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* Friday 09:00 - 12:00 [https://etherpad.openstack.org/p/docstopicsparissummit Remaining docs topics in the pod]&lt;br /&gt;
&lt;br /&gt;
==Glance==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heat==&lt;br /&gt;
* Wed 13:50 – 14:30 [https://etherpad.openstack.org/p/kilo-heat-testing Heat integration strategy, functional &amp;amp; unit tests]&lt;br /&gt;
* Wed 14:40 – 15:20 [https://etherpad.openstack.org/p/kilo-heat-upgrades Heat Upgrades (testing, status, zero downtime)]&lt;br /&gt;
* Wed 15:30 – 16:10 [https://etherpad.openstack.org/p/kilo-heat-convergence Heat Convergence - resolving any questions]&lt;br /&gt;
* Wed 16:30 – 17:10 [https://etherpad.openstack.org/p/kilo-heat-autoscaling Heat Autoscaling API]&lt;br /&gt;
* Wed 17:20 – 18:00 [https://etherpad.openstack.org/p/kilo-heat-containers Heat and Containers]&lt;br /&gt;
&lt;br /&gt;
* Thurs 09:00 – 9:40 [https://etherpad.openstack.org/p/kilo-heat-usability-template Heat Template format usability improvements]&lt;br /&gt;
* Thurs 09:50 – 10:30 [https://etherpad.openstack.org/p/kilo-heat-usability-general Heat API and general usability improvements]&lt;br /&gt;
&lt;br /&gt;
==Horizon==&lt;br /&gt;
* Wed 1440 – 1520 [https://etherpad.openstack.org/p/kilo-horizon-operators-users Operators, Deployers and Users]&lt;br /&gt;
* Wed 1530 – 1610 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Horizon/Keystone Cross Topic Session]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thurs 950 – 1030 [https://etherpad.openstack.org/p/kilo-horizon-django-angular Django-Angular Playing Nice]&lt;br /&gt;
* Thurs 1100 – 1140 [https://etherpad.openstack.org/p/kilo-horizon-clientside-data Clientside Data]&lt;br /&gt;
* Thurs 1630 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-customize-extend Making Horizon easier to customize and extend]&lt;br /&gt;
* Thurs 1720 – 1800 [https://etherpad.openstack.org/p/kilo-horizon-ux UX and Horizon]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-contributors-meetup Contributors Meetup]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Infrastructure==&lt;br /&gt;
&lt;br /&gt;
* Tue 1640 - 1720 [https://etherpad.openstack.org/p/kilo-third-party-items Third-party CI]&lt;br /&gt;
* Wed 0950 - 1030 [https://etherpad.openstack.org/p/kilo-infra-manual Infra Manual]&lt;br /&gt;
* Thu 1520 - 1600 [https://etherpad.openstack.org/p/StoryBoard_design_summit_Paris Storyboard]&lt;br /&gt;
&lt;br /&gt;
==Ironic==&lt;br /&gt;
* Wed 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-exposing-different-capabilities Exposing Different Capabilities]&lt;br /&gt;
* Wed 0950 - 1030 [https://etherpad.openstack.org/kilo-ironic-resource-locking Resource Locking]&lt;br /&gt;
* Wed 1100 - 1140 [https://etherpad.openstack.org/kilo-ironic-making-it-simple Making Ironic Easier to Use]&lt;br /&gt;
* Wed 1150 - 1230 [https://etherpad.openstack.org/kilo-ironic-understanding-hardware Understanding the Hardware we have]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-asserting-ready-state Asserting Ready State]&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 - 1710 [https://etherpad.openstack.org/kilo-ironic-contributor-meetup Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Keystone==&lt;br /&gt;
* Wed 0900 – 0940 [https://etherpad.openstack.org/p/kilo-keystone-object-lifecycle Object Lifecycle / Object Dependencies]&lt;br /&gt;
* Wed 0950 – 1030 [https://etherpad.openstack.org/p/hierarchical-multitenancy-kilo-summit Hierarchical Multitenancy]&lt;br /&gt;
* Wed 1630 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Keystone-Horizon-CLI Federation/SSO]&lt;br /&gt;
* Wed 1720 – 1800 [https://etherpad.openstack.org/p/kilo-keystone-operators-deployers-and-devops Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 9040 [https://etherpad.openstack.org/p/kilo-keystone-python-keystoneclient python-keystoneclient]&lt;br /&gt;
* Thu 1430 – 1510 [https://etherpad.openstack.org/p/kilo-keystone-authorization Authorization]&lt;br /&gt;
* Thu 1520 – 1600 [https://etherpad.openstack.org/p/kilo-keystone-policy-model-token-capabilities Policy Model and User/Token Capabilities]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-meetup Keystone Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Manila==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-manila-networking-and-multitenancy Networking and Multitenancy]&lt;br /&gt;
* 16:40 - 17:20 - [https://etherpad.openstack.org/p/kilo-manila-mount-automation Mount Automation]&lt;br /&gt;
* 17:30 - 18:10 - [https://etherpad.openstack.org/p/kilo-manila-access-groups Access Groups]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Neutron==&lt;br /&gt;
=== Tue ===&lt;br /&gt;
Neutron contributors please attend [https://wiki.openstack.org/wiki/Summit/Kilo/Etherpads#Cross-Project_workshops Cross Project Workshops]&lt;br /&gt;
&lt;br /&gt;
* 12.05 - 12.45 - [https://etherpad.openstack.org/p/kilo-gbp-design-summit-topics Group-based Policy]&lt;br /&gt;
&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 09:00 - 09:40 - [https://etherpad.openstack.org/p/neutron-processes Development Process and Procedures]&lt;br /&gt;
* 09:50 - 10:30 - [https://etherpad.openstack.org/p/aE7ydRU35m Split Vendor Plugins and Drivers] Part 1&lt;br /&gt;
* 11:00 - 11:50 - [https://etherpad.openstack.org/p/aE7ydRU35m Split Vendor Plugins and Drivers] Part 2&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-cli CLI and Client Lib]&lt;br /&gt;
&lt;br /&gt;
=== Thu ===&lt;br /&gt;
* 11:00 - 11:40 - [https://etherpad.openstack.org/p/neutron-kilo-lightning-talks Lightning Talks]&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-services Advanced Services Spin Out]&lt;br /&gt;
* 13:40 - 14:20 - [https://etherpad.openstack.org/p/neutron-rest-api REST/RPC/Plugin API] Part 1 (REST)&lt;br /&gt;
* 14:30 - 15:10 - [https://etherpad.openstack.org/p/neutron-rpc-api REST/RPC/Plugin API] Part 2 (RPC)&lt;br /&gt;
* 15:20 - 16:00 - [https://etherpad.openstack.org/p/neutron-plugin-api REST/RPC/Plugin API] Part 3 (Plugin)&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/neutron-ipam Pluggable IPAM]&lt;br /&gt;
* 17:20 - 18:00 - Paying down technical debt in [https://etherpad.openstack.org/p/neutron-l2 L2 Agents] and [https://etherpad.openstack.org/p/neutron-l3 L3 Agents]&lt;br /&gt;
&lt;br /&gt;
=== Fri ===&lt;br /&gt;
* 09:00 - 12:30 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
* 13:40 - 17:10 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
&lt;br /&gt;
==Nova==&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 9:00 - 10:30 - [https://etherpad.openstack.org/p/kilo-nova-cells  Cells 1 &amp;amp; 2] &lt;br /&gt;
* 11:00 - 11:40 - [https://etherpad.openstack.org/p/kilo-nova-objects Nova Objects Status and Deadlines]&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-glance Nova/Glance client library]&lt;br /&gt;
* 13:50 - 14:30 - Nova Unconference&lt;br /&gt;
* 14:40 - 15:20 - Nova CI status checkpoint&lt;br /&gt;
* 15:30 - 16:10 - [https://etherpad.openstack.org/p/kilo-nova-virt-driver-consistency Virt Driver Consistency]&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/kilo-nova-functional-testing Nova Functional testing]&lt;br /&gt;
* 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-nova-nfv NFV proposed specs]&lt;br /&gt;
&lt;br /&gt;
=== Thurs ===&lt;br /&gt;
* 9:00 - 9:40 - API Microversions&lt;br /&gt;
* 9:50 - 10:30 - nova-network migration&lt;br /&gt;
* 11:00 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-scheduler-rt Scheduler and resource tracker] &lt;br /&gt;
* 13:40 - 14:30 - Nova Unconference&lt;br /&gt;
* 14:30 - 15:10 - Nova Upgrades and DB migrations&lt;br /&gt;
* 15:20 - 16:00 - Containers service&lt;br /&gt;
* 16:30 - 18:00 - [Setting nova's roadmap for Kilo 1 &amp;amp; 2&lt;br /&gt;
&lt;br /&gt;
==Oslo==&lt;br /&gt;
* Wed 2014-11-05 11:00  - [https://etherpad.openstack.org/p/kilo-oslo-library-proposals Oslo graduation schedule]&lt;br /&gt;
* Wed 2014-11-05 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-oslo.messaging oslo.messaging ]&lt;br /&gt;
* Wed 2014-11-05 13:50  - [https://etherpad.openstack.org/p/kilo-oslo-common-quota-library A Common Quota Management Library]&lt;br /&gt;
* Thu 2014-11-06 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-taskflow taskflow]&lt;br /&gt;
* Thu 2014-11-06 13:40  - [https://etherpad.openstack.org/p/kilo-oslo-alpha-versioning Using alpha versioning for Oslo libraries]&lt;br /&gt;
* Thu 2014-11-06 16:30  - [https://etherpad.openstack.org/p/kilo-oslo-python-3 Python 3 support in Oslo]&lt;br /&gt;
* Thu 2014-11-06 17:20  - [https://etherpad.openstack.org/p/kilo-oslo-namespace-packages Moving Oslo away from namespace packages]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==QA==&lt;br /&gt;
* Wed 9:00 - 9:40 [https://etherpad.openstack.org/p/kilo-summit-gap-analysis-tempest-in-production Gap Analysis for using Tempest in Production]&lt;br /&gt;
* Wed 11:00 - 11:40 [https://etherpad.openstack.org/p/kilo-summit-tempest-scope-in-the-brave-new-world Tempest Scope in the Brave New World]&lt;br /&gt;
* Wed 14:40 - 15:20 [https://etherpad.openstack.org/p/kilo-gating-relationships QA/Infra Gating Relationships]&lt;br /&gt;
* Wed 15:30 - 16:10 [https://etherpad.openstack.org/p/kilo-summit-post-merge-qa-ci QA and CI After Merge]&lt;br /&gt;
* Wed 17:20 - 18:00 [https://etherpad.openstack.org/p/kilo-summit-tempest-lib-moving-forward Tempest-lib moving forward]&lt;br /&gt;
* Thu 11:50 - 12:30 [https://etherpad.openstack.org/p/kilo-summit-future-auth-interface-design Future Auth Interface Design]&lt;br /&gt;
* Thu 14:30 - 13:10 [https://etherpad.openstack.org/p/kilo-summit-devstack-grenade Devstack/Grenade]&lt;br /&gt;
&lt;br /&gt;
==Release Management==&lt;br /&gt;
* Wed 1150 – 1230 [https://etherpad.openstack.org/p/kilo-relmgt-stable-branches Stable branches]&lt;br /&gt;
* Thu 0950 – 1030 [https://etherpad.openstack.org/p/kilo-relmgt-vulnerability-management Vulnerability management]&lt;br /&gt;
&lt;br /&gt;
==Sahara==&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-edp&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-ux&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production-clusters&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-integration-security&lt;br /&gt;
&lt;br /&gt;
==Swift==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TripleO==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Trove==&lt;br /&gt;
Trovesday (Thursday)&amp;lt;br /&amp;gt;&lt;br /&gt;
14:30 - 15:10: [https://etherpad.openstack.org/p/kilo-summit-trove-clusters Building Out Trove Clusters]&amp;lt;br /&amp;gt;&lt;br /&gt;
15:20 - 16:00: [https://etherpad.openstack.org/p/kilo-summit-trove-replication-v2 Replication v2 and Scheduling Tasks in Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
16:30 - 17:10: [https://etherpad.openstack.org/p/kilo-summit-testing-trove Testing Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
17:20 - 18:00: [https://etherpad.openstack.org/p/kilo-summit-trove-openstack-tighter-integration Trove integration with other OpenStack components]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Zaqar==&lt;br /&gt;
* Tuesday 11:15 [https://etherpad.openstack.org/p/kilo-zaqar-summit-integration-with-services Zaqar integration with other services] &lt;br /&gt;
* Tuesday 12:05 [https://etherpad.openstack.org/p/kilo-zaqar-summit-v2 Zaqar API v2: What? Why? When?]&lt;br /&gt;
* Tuesday 14:00 [https://etherpad.openstack.org/p/kilo-zaqar-summit-persistent-transports Zaqar Persistent Transports]&lt;br /&gt;
* Tuesday 14:50 [https://etherpad.openstack.org/p/kilo-zaqar-summit-infrastructure Zaqar Infrastructure Session]&lt;br /&gt;
&lt;br /&gt;
==Other Projects==&lt;br /&gt;
* Monday 11:40 - 13:10 [https://etherpad.openstack.org/p/kilo-ceph Ceph]&lt;br /&gt;
* Monday 14:30 - 16:00 [https://etherpad.openstack.org/p/kilo-ansible-for-openstack Ansible for OpenStack]&lt;br /&gt;
* Monday 16:20 - 17:50 [https://etherpad.openstack.org/p/puppet-openstack-paris-agenda puppet-openstack design session]&lt;br /&gt;
* Monday 16:30 - 18:30 [https://etherpad.openstack.org/p/paris-product-meeting Product Management session]&lt;br /&gt;
* Tuesday 14:00 - 14:40 [https://etherpad.openstack.org/p/kilo-poppy-summit Poppy design session]&lt;br /&gt;
* Tuesday 15.40 - 16.20 [https://etherpad.openstack.org/p/paris-2014-design-summit-mistral Mistral design session]&lt;br /&gt;
* Tuesday 16:40 - 17:20 [https://etherpad.openstack.org/p/kilo-murano-design-session Murano design session]&lt;br /&gt;
* Tuesday 16:40 - 18:10 [https://etherpad.openstack.org/p/par-kilo-congress-design-session Congress design session]&lt;br /&gt;
&lt;br /&gt;
==Event intro/closure==&lt;br /&gt;
* Tue 1115 – 1155 [https://etherpad.openstack.org/p/kilo-summit-101 Summit 101]&lt;br /&gt;
* Fri 1720 – 1800 [https://etherpad.openstack.org/p/kilo-summit-feedback Design Summit feedback]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Ops==&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pain Top 10 Pain points from the user survey - how to fix them?]&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pets What is the best practice for managing 'pets'?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-logging How do we fix logging?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-dvr Distributed Virtual Router - finally neutron HA!]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-ironic What do you want from ironic/bare metal?]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-containers What do we want from containers/docker?]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture-upgrades Architecture Show and Tell - Upgrades Special Edition]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-ha High availability - how do you do it?]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture Architecture Show and Tell]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-get-involved How to get involved in Kilo?]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-storage Storage - how do you do it?]&lt;br /&gt;
&lt;br /&gt;
* Wed 1440 - 1520 [http://kilodesignsummit.sched.org/event/3406e6331bd488329eaf9af7406bdc95 Horizon Operators, Deployers and End Users]&lt;br /&gt;
* Wed 1720 - 1800 [http://kilodesignsummit.sched.org/event/e78766659871928319d63259167efdd6 Keystone Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-log-rationalisation Log Rationalisation]&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-docs Documentation] &lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-telco Telco WG]&lt;br /&gt;
&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-monitoring Monitoring]&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-upgrades Upgrades]&lt;br /&gt;
* Thu 1100 – 1140   [https://etherpad.openstack.org/p/kilo-summit-ops-stable-branch Stable Branch]&lt;br /&gt;
* Thu 1150 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-chef Chef]&lt;br /&gt;
&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-blueprints Blueprints Working Group]&lt;br /&gt;
* Thu 1340 – 1500   [https://etherpad.openstack.org/p/kilo-summit-ops-tools Ops Tools working group]&lt;br /&gt;
* Thu 1510 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-puppet Puppet]&lt;br /&gt;
&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-large-deployments Large Deployments Team]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-api API Working Group]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-enterprise Win The Enterprise Working Group]&lt;br /&gt;
&lt;br /&gt;
*Thu 1720 - 1800  [http://kilodesignsummit.sched.org/event/f4f7fe08c447c048a30065c5adb5ea79 Swift Ops Feedback Session]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67255</id>
		<title>Design Summit/Kilo/Etherpads</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Design_Summit/Kilo/Etherpads&amp;diff=67255"/>
				<updated>2014-11-04T14:18:57Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Cross-Project workshops */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Summit]]&lt;br /&gt;
[[Category:Kilo]]&lt;br /&gt;
[[Category:Etherpad]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:3;-moz-column-count:3;-webkit-column-count:3&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Cross-Project workshops==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 11:15 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-api-wg API Working Group] (double slot)&lt;br /&gt;
* 11:15 - 11:55 - [https://etherpad.openstack.org/p/uuid_for_test_Cases RefStack, DefCore, Refstack Interoperability, and Tempest]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-move-func-tests-to-projects Moving Functional Tests to Projects]&lt;br /&gt;
* 12:05 - 12:45 - [https://etherpad.openstack.org/p/kilo-crossproject-ha-integration How to provide HA in a central manner]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-specs Specs: The Good, Bad, and the Ugly]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-upgrades-and-versioning Dealing with RPC and DB changes during upgrade.]&lt;br /&gt;
* 14:00 - 14:40 - [https://etherpad.openstack.org/p/kilo-crossproject-notifications Schema and Schema Validation for Notifications]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scale-out-openstack Approaches for Scaling Out]&lt;br /&gt;
* 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-requirements  Changes to our Requirements Management Policy]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-crossproject-log-rationalization Log Rationalization]&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-how-to-tackle-debt How to Tackle Technical Debt in Kilo]&lt;br /&gt;
* 16:40 - 18:00 - [https://etherpad.openstack.org/p/kilo-crossproject-growth-challenges Growth Challenges] (double slot)&lt;br /&gt;
&lt;br /&gt;
==Barbican==&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/barbican-kilo-integration Integration discussion with other OpenStack projects]&lt;br /&gt;
&lt;br /&gt;
==Ceilometer==&lt;br /&gt;
* Wed 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-ceilometer-functional-tests Switchover to in-tree functional tests]&lt;br /&gt;
* Thurs 9:00 - 9:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-gnocchi-integration Bringing Gnocchi and Ceilometer together]&lt;br /&gt;
* Thurs 9:50  - 10:30 - [https://etherpad.openstack.org/p/gnocchi-influxdb-opentsdb-mapping Mapping gnocchi semantics to InfluxDB/OpenTSDB]&lt;br /&gt;
* Thurs 11:00 - 11:40 - [https://etherpad.openstack.org/p/kilo-ceilometer-monasca-collaboration Areas to target for collaboration with Monasca]&lt;br /&gt;
* Thurs 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-ceilometer-persistent-pipeline-cfg Persistent pipeline config] / [https://etherpad.openstack.org/p/kilo-ceilometer-kafka-publisher Kafka publisher]&lt;br /&gt;
* Thurs 13:40 - 14:20 - [https://etherpad.openstack.org/p/kilo-ceilometer-notifications-as-contract Notifications-as-a-contract]&lt;br /&gt;
&lt;br /&gt;
==Cinder==&lt;br /&gt;
&lt;br /&gt;
* Wednesday, November 5 • 14:40 - 15:20 - [https://etherpad.openstack.org/p/cinder-enforcement-of-states Cinder State Machine] [http://kilodesignsummit.sched.org/event/58baf2d2de8b4b32117c645c224c4fe1#.VFQZdPTF_3H Description]&lt;br /&gt;
&lt;br /&gt;
==Designate==&lt;br /&gt;
* https://etherpad.openstack.org/p/designate-kilo-summit-ifxr-session&lt;br /&gt;
* https://review.openstack.org/#/c/132638/ Incremental Zone transfer&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
&lt;br /&gt;
* Tues 14:50 - 15:30 - [https://etherpad.openstack.org/p/kilo-crossproject-scaling-docs Scaling Documentation across Projects]&lt;br /&gt;
* Friday 09:00 - 12:00 [https://etherpad.openstack.org/p/docstopicsparissummit Remaining docs topics in the pod]&lt;br /&gt;
&lt;br /&gt;
==Glance==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Heat==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Horizon==&lt;br /&gt;
* Wed 1440 – 1520 [https://etherpad.openstack.org/p/kilo-horizon-operators-users Operators, Deployers and Users]&lt;br /&gt;
* Wed 1530 – 1610 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Horizon/Keystone Cross Topic Session]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thurs 950 – 1030 [https://etherpad.openstack.org/p/kilo-horizon-django-angular Django-Angular Playing Nice]&lt;br /&gt;
* Thurs 1100 – 1140 [https://etherpad.openstack.org/p/kilo-horizon-clientside-data Clientside Data]&lt;br /&gt;
* Thurs 1630 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-customize-extend Making Horizon easier to customize and extend]&lt;br /&gt;
* Thurs 1720 – 1800 [https://etherpad.openstack.org/p/kilo-horizon-ux UX and Horizon]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-horizon-contributors-meetup Contributors Meetup]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Infrastructure==&lt;br /&gt;
* Thu 1520 - 1600 [https://etherpad.openstack.org/p/StoryBoard_design_summit_Paris Storyboard]&lt;br /&gt;
* Tue 1640 - 1720 [https://etherpad.openstack.org/p/kilo-third-party-items Third-party CI]&lt;br /&gt;
&lt;br /&gt;
==Ironic==&lt;br /&gt;
* Wed 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-exposing-different-capabilities Exposing Different Capabilities]&lt;br /&gt;
* Wed 0950 - 1030 [https://etherpad.openstack.org/kilo-ironic-resource-locking Resource Locking]&lt;br /&gt;
* Wed 1100 - 1140 [https://etherpad.openstack.org/kilo-ironic-making-it-simple Making Ironic Easier to Use]&lt;br /&gt;
* Wed 1150 - 1230 [https://etherpad.openstack.org/kilo-ironic-understanding-hardware Understanding the Hardware we have]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 - 0940 [https://etherpad.openstack.org/kilo-ironic-asserting-ready-state Asserting Ready State]&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 - 1710 [https://etherpad.openstack.org/kilo-ironic-contributor-meetup Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Keystone==&lt;br /&gt;
* Wed 0900 – 0940 [https://etherpad.openstack.org/p/kilo-keystone-object-lifecycle Object Lifecycle / Object Dependencies]&lt;br /&gt;
* Wed 0950 – 1030 [https://etherpad.openstack.org/p/hierarchical-multitenancy-kilo-summit Hierarchical Multitenancy]&lt;br /&gt;
* Wed 1630 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-horizon-cli-federation-sso Keystone-Horizon-CLI Federation/SSO]&lt;br /&gt;
* Wed 1720 – 1800 [https://etherpad.openstack.org/p/kilo-keystone-operators-deployers-and-devops Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 9040 [https://etherpad.openstack.org/p/kilo-keystone-python-keystoneclient python-keystoneclient]&lt;br /&gt;
* Thu 1430 – 1510 [https://etherpad.openstack.org/p/kilo-keystone-authorization Authorization]&lt;br /&gt;
* Thu 1520 – 1600 [https://etherpad.openstack.org/p/kilo-keystone-policy-model-token-capabilities Policy Model and User/Token Capabilities]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Fri 1340 – 1710 [https://etherpad.openstack.org/p/kilo-keystone-meetup Keystone Contributor Meetup]&lt;br /&gt;
&lt;br /&gt;
==Manila==&lt;br /&gt;
All on Tuesday&lt;br /&gt;
* 15:40 - 16:20 - [https://etherpad.openstack.org/p/kilo-manila-networking-and-multitenancy Networking and Multitenancy]&lt;br /&gt;
* 16:40 - 17:20 - [https://etherpad.openstack.org/p/kilo-manila-mount-automation Mount Automation]&lt;br /&gt;
* 17:30 - 18:10 - [https://etherpad.openstack.org/p/kilo-manila-access-groups Access Groups]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Neutron==&lt;br /&gt;
=== Tue ===&lt;br /&gt;
Neutron contributors please attend [https://wiki.openstack.org/wiki/Summit/Kilo/Etherpads#Cross-Project_workshops Cross Project Workshops]&lt;br /&gt;
&lt;br /&gt;
* 12.05 - 12.45 - [https://etherpad.openstack.org/p/kilo-gbp-design-summit-topics Group-based Policy]&lt;br /&gt;
&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 09:00 - 09:40 - [https://etherpad.openstack.org/p/neutron-processes Development Process and Procedures]&lt;br /&gt;
* 09:50 - 10:30 - [https://etherpad.openstack.org/p/neutron-vendors Split Vendor Plugins and Drivers] Part 1&lt;br /&gt;
* 11:00 - 11:50 - [https://etherpad.openstack.org/p/neutron-vendors Split Vendor Plugins and Drivers] Part 2&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-cli CLI and Client Lib]&lt;br /&gt;
=== Thu ===&lt;br /&gt;
* 11:00 - 11:40 - [https://etherpad.openstack.org/p/neutron-kilo-lightning-talks Lightning Talks]&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/neutron-services Advanced Services Spin Out]&lt;br /&gt;
* 13:40 - 14:20 - [https://etherpad.openstack.org/p/neutron-rest-api REST/RPC/Plugin API] Part 1 (REST)&lt;br /&gt;
* 14:30 - 15:10 - [https://etherpad.openstack.org/p/neutron-rpc-api REST/RPC/Plugin API] Part 2 (RPC)&lt;br /&gt;
* 15:20 - 16:00 - [https://etherpad.openstack.org/p/neutron-plugin-api REST/RPC/Plugin API] Part 3 (Plugin)&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/neutron-ipam Pluggable IPAM]&lt;br /&gt;
* 17:20 - 18:00 - Paying down technical debt in [https://etherpad.openstack.org/p/neutron-l2 L2 Agents] and [https://etherpad.openstack.org/p/neutron-l3 L3 Agents]&lt;br /&gt;
&lt;br /&gt;
=== Fri ===&lt;br /&gt;
* 09:00 - 12:30 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
* 13:40 - 17:10 - [https://etherpad.openstack.org/p/neutron-kilo-meetup-slots Neutron contributors meetup]&lt;br /&gt;
&lt;br /&gt;
==Nova==&lt;br /&gt;
=== Wed ===&lt;br /&gt;
* 9:00 - 10:30 - Cells 1 &amp;amp; 2 &lt;br /&gt;
* 11:00 - 11:40 - Nova Objects Status and Deadlines&lt;br /&gt;
* 11:50 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-glance Nova/Glance client library]&lt;br /&gt;
* 13:50 - 14:30 - Nova Unconference&lt;br /&gt;
* 14:40 - 15:20 - Nova CI status checkpoint&lt;br /&gt;
* 15:30 - 16:10 - Virt Driver Consistency&lt;br /&gt;
* 16:30 - 17:10 - [https://etherpad.openstack.org/p/kilo-nova-functional-testing Nova Functional testing]&lt;br /&gt;
* 17:20 - 18:00 - [https://etherpad.openstack.org/p/kilo-nova-nfv NFV proposed specs]&lt;br /&gt;
&lt;br /&gt;
=== Thurs ===&lt;br /&gt;
* 9:00 - 9:40 - API Microversions&lt;br /&gt;
* 9:50 - 10:30 - nova-network migration&lt;br /&gt;
* 11:00 - 12:30 - [https://etherpad.openstack.org/p/kilo-nova-scheduler-rt Scheduler and resource tracker] &lt;br /&gt;
* 13:40 - 14:30 - Nova Unconference&lt;br /&gt;
* 14:30 - 15:10 - Nova Upgrades and DB migrations&lt;br /&gt;
* 15:20 - 16:00 - Containers service&lt;br /&gt;
* 16:30 - 18:00 - [Setting nova's roadmap for Kilo 1 &amp;amp; 2&lt;br /&gt;
&lt;br /&gt;
==Oslo==&lt;br /&gt;
* Wed 2014-11-05 11:00  - [https://etherpad.openstack.org/p/kilo-oslo-library-proposals Oslo graduation schedule]&lt;br /&gt;
* Wed 2014-11-05 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-oslo.messaging oslo.messaging ]&lt;br /&gt;
* Wed 2014-11-05 13:50  - [https://etherpad.openstack.org/p/kilo-oslo-common-quota-library A Common Quota Management Library]&lt;br /&gt;
* Thu 2014-11-06 11:50  - [https://etherpad.openstack.org/p/kilo-oslo-taskflow taskflow]&lt;br /&gt;
* Thu 2014-11-06 13:40  - [https://etherpad.openstack.org/p/kilo-oslo-alpha-versioning Using alpha versioning for Oslo libraries]&lt;br /&gt;
* Thu 2014-11-06 16:30  - [https://etherpad.openstack.org/p/kilo-oslo-python-3 Python 3 support in Oslo]&lt;br /&gt;
* Thu 2014-11-06 17:20  - [https://etherpad.openstack.org/p/kilo-oslo-namespace-packages Moving Oslo away from namespace packages]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==QA==&lt;br /&gt;
* Wed 9:00 - 9:40 [https://etherpad.openstack.org/p/kilo-summit-gap-analysis-tempest-in-production Gap Analysis for using Tempest in Production]&lt;br /&gt;
* Wed 11:00 - 11:40 [https://etherpad.openstack.org/p/kilo-summit-tempest-scope-in-the-brave-new-world Tempest Scope in the Brave New World]&lt;br /&gt;
* Wed 14:40 - 13:20 QA/Infra Gating Relationships&lt;br /&gt;
* Wed 15:30 - 16:10 [https://etherpad.openstack.org/p/kilo-summit-post-merge-qa-ci QA and CI After Merge]&lt;br /&gt;
* Wed 17:20 - 18:00 [https://etherpad.openstack.org/p/kilo-summit-tempest-lib-moving-forward Tempest-lib moving forward]&lt;br /&gt;
* Thu 11:50 - 12:30 [https://etherpad.openstack.org/p/kilo-summit-future-auth-interface-design Future Auth Interface Design]&lt;br /&gt;
* Thu 14:30 - 13:10 [https://etherpad.openstack.org/p/kilo-summit-devstack-grenade Devstack/Grenade]&lt;br /&gt;
&lt;br /&gt;
==Release Management==&lt;br /&gt;
* Wed 1150 – 1230 [https://etherpad.openstack.org/p/kilo-relmgt-stable-branches Stable branches]&lt;br /&gt;
* Thu 0950 – 1030 [https://etherpad.openstack.org/p/kilo-relmgt-vulnerability-management Vulnerability management]&lt;br /&gt;
&lt;br /&gt;
==Sahara==&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-edp&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-ux&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production-clusters&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-production&lt;br /&gt;
* https://etherpad.openstack.org/p/kilo-summit-sahara-integration-security&lt;br /&gt;
&lt;br /&gt;
==Swift==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TripleO==&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Trove==&lt;br /&gt;
Trovesday (Thursday)&amp;lt;br /&amp;gt;&lt;br /&gt;
14:30 - 15:10: [https://etherpad.openstack.org/p/kilo-summit-trove-clusters Building Out Trove Clusters]&amp;lt;br /&amp;gt;&lt;br /&gt;
15:20 - 16:00: [https://etherpad.openstack.org/p/kilo-summit-trove-replication-v2 Replication v2 and Scheduling Tasks in Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
16:30 - 17:10: [https://etherpad.openstack.org/p/kilo-summit-testing-trove Testing Trove]&amp;lt;br /&amp;gt;&lt;br /&gt;
17:20 - 18:00: [https://etherpad.openstack.org/p/kilo-summit-trove-openstack-tighter-integration Trove integration with other OpenStack components]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Zaqar==&lt;br /&gt;
* Tuesday 11:15 [https://etherpad.openstack.org/p/kilo-zaqar-summit-integration-with-services Zaqar integration with other services] &lt;br /&gt;
* Tuesday 12:05 [https://etherpad.openstack.org/p/kilo-zaqar-summit-v2 Zaqar API v2: What? Why? When?]&lt;br /&gt;
* Tuesday 14:00 [https://etherpad.openstack.org/p/kilo-zaqar-summit-persistent-transports Zaqar Persistent Transports]&lt;br /&gt;
* Tuesday 14:50 [https://etherpad.openstack.org/p/kilo-zaqar-summit-infrastructure Zaqar Infrastructure Session]&lt;br /&gt;
&lt;br /&gt;
==Other Projects==&lt;br /&gt;
* Monday 11:40 - 13:10 [https://etherpad.openstack.org/p/kilo-ceph Ceph]&lt;br /&gt;
* Monday 14:30 - 16:00 [https://etherpad.openstack.org/p/kilo-ansible-for-openstack Ansible for OpenStack]&lt;br /&gt;
* Monday 16:20 - 17:50 [https://etherpad.openstack.org/p/puppet-openstack-paris-agenda puppet-openstack design session]&lt;br /&gt;
* Monday 16:30 - 18:30 [https://etherpad.openstack.org/p/paris-product-meeting Product Management session]&lt;br /&gt;
* Tuesday 14:00 - 14:40 [https://etherpad.openstack.org/p/kilo-poppy-summit Poppy design session]&lt;br /&gt;
* Tuesday 15.40 - 16.20 [https://etherpad.openstack.org/p/paris-2014-design-summit-mistral Mistral design session]&lt;br /&gt;
* Tuesday 16:40 - 17:20 [https://etherpad.openstack.org/p/kilo-murano-design-session Murano design session]&lt;br /&gt;
* Tuesday 16:40 - 18:10 [https://etherpad.openstack.org/p/par-kilo-congress-design-session Congress design session]&lt;br /&gt;
&lt;br /&gt;
==Event intro/closure==&lt;br /&gt;
* Tue 1115 – 1155 [https://etherpad.openstack.org/p/kilo-summit-101 Summit 101]&lt;br /&gt;
* Fri 1720 – 1800 [https://etherpad.openstack.org/p/kilo-summit-feedback Design Summit feedback]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Ops==&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pain Top 10 Pain points from the user survey - how to fix them?]&lt;br /&gt;
* Mon 1140 – 1220   [https://etherpad.openstack.org/p/kilo-summit-ops-pets What is the best practice for managing 'pets'?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-logging How do we fix logging?]&lt;br /&gt;
* Mon 1230 – 1310  [https://etherpad.openstack.org/p/kilo-summit-ops-dvr Distributed Virtual Router - finally neutron HA!]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-ironic What do you want from ironic/bare metal?]&lt;br /&gt;
* Mon 1430 – 1510  [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-containers What do we want from containers/docker?]&lt;br /&gt;
* Mon 1520 – 1600  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture-upgrades Architecture Show and Tell - Upgrades Special Edition]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-ha High availability - how do you do it?]&lt;br /&gt;
* Mon 1620 – 1700  [https://etherpad.openstack.org/p/kilo-summit-ops-architecture Architecture Show and Tell]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-get-involved How to get involved in Kilo?]&lt;br /&gt;
* Mon 1710 – 1750   [https://etherpad.openstack.org/p/kilo-summit-ops-storage Storage - how do you do it?]&lt;br /&gt;
&lt;br /&gt;
* Wed 1440 - 1520 [http://kilodesignsummit.sched.org/event/3406e6331bd488329eaf9af7406bdc95 Horizon Operators, Deployers and End Users]&lt;br /&gt;
* Wed 1720 - 1800 [http://kilodesignsummit.sched.org/event/e78766659871928319d63259167efdd6 Keystone Operators, Deployers, and DevOps]&lt;br /&gt;
&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-log-rationalisation Log Rationalisation]&lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-docs Documentation] &lt;br /&gt;
* Thu 0900 – 1030   [https://etherpad.openstack.org/p/kilo-summit-ops-telco Telco WG]&lt;br /&gt;
&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-monitoring Monitoring]&lt;br /&gt;
* Thu 1100 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-upgrades Upgrades]&lt;br /&gt;
* Thu 1100 – 1140   [https://etherpad.openstack.org/p/kilo-summit-ops-stable-branch Stable Branch]&lt;br /&gt;
* Thu 1150 – 1230   [https://etherpad.openstack.org/p/kilo-summit-ops-chef Chef]&lt;br /&gt;
&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-app-eco The Application Ecosystem working group]&lt;br /&gt;
* Thu 1340 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-blueprints Blueprints Working Group]&lt;br /&gt;
* Thu 1340 – 1500   [https://etherpad.openstack.org/p/kilo-summit-ops-tools Ops Tools working group]&lt;br /&gt;
* Thu 1510 – 1550   [https://etherpad.openstack.org/p/kilo-summit-ops-puppet Puppet]&lt;br /&gt;
&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-large-deployments Large Deployments Team]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-api API Working Group]&lt;br /&gt;
* Thu 1630 – 1800   [https://etherpad.openstack.org/p/kilo-summit-ops-enterprise Win The Enterprise Working Group]&lt;br /&gt;
&lt;br /&gt;
*Thu 1720 - 1800  [http://kilodesignsummit.sched.org/event/f4f7fe08c447c048a30065c5adb5ea79 Swift Ops Feedback Session]&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64910</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64910"/>
				<updated>2014-10-13T20:38:25Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* On Demand Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
'''Meeting time: The OpenStack Networking Team ([[Neutron]]) holds public meetings alternating between Mondays at 2100 UTC (#openstack-meeting) and Tuesdays at 1400 UTC (#openstack-meeting). Everyone is encouraged to attend.'''&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
'''Monday (10/13/2014) at 2100 UTC on #openstack-meeting'''&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-RC2 is cut:&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-rc2&lt;br /&gt;
** https://launchpad.net/neutron/juno/juno-rc2/+download/neutron-2014.2.rc2.tar.gz&lt;br /&gt;
** Please try this out and report bugs in launchpad&lt;br /&gt;
** For release critical bugs, please tag them as &amp;quot;juno-rc-potential&amp;quot; for a potential RC3 release of Neutron&lt;br /&gt;
* Release Notes for Juno are in the process of being updated&lt;br /&gt;
** https://wiki.openstack.org/wiki/ReleaseNotes/Juno#OpenStack_Network_Service_.28Neutron.29&lt;br /&gt;
** Please look them over and provide input there&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
Juno-RC1 Potential bugs for an RC2&lt;br /&gt;
* https://bugs.launchpad.net/neutron/+bugs?field.tag=juno-rc-potential&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1364283 - Edgar Magana - WIP: Juno&lt;br /&gt;
* 2 bugs more but they are vendor specific&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== On Demand Agenda ===&lt;br /&gt;
* Neutron core peer-review process (mestery)&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-peer-review&lt;br /&gt;
* Kilo Design Summit Topics (mestery and markmcclain)&lt;br /&gt;
* Non-NSX VMware driver discussion (garyk and armax)&lt;br /&gt;
* XML is going away -- [https://bugs.launchpad.net/neutron/+bug/1380787 we really mean it this time] (markmcclain)&lt;br /&gt;
&lt;br /&gt;
== Deprecated Meeting Agenda ==&lt;br /&gt;
&lt;br /&gt;
Much of the following deprecated content was here as an anchor for Neutron sub teams and to report sub team status.  The [[NeutronSubTeams]] page will serve that purpose going forward.&lt;br /&gt;
&lt;br /&gt;
The following are all from the prior meetings, and will be cleaned up and removed by 10-21-2014&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Kilo Design Summit Topics Etherpad&lt;br /&gt;
** For Kilo, the online proposal tool is going away&lt;br /&gt;
** Teams will work around a shared etherpad to setup design summit sessions&lt;br /&gt;
*** http://lists.openstack.org/pipermail/openstack-dev/2014-September/045844.html&lt;br /&gt;
** Our etherpad is here linked from here (https://wiki.openstack.org/wiki/Summit/Planning)&lt;br /&gt;
*** https://etherpad.openstack.org/p/kilo-neutron-summit-topics&lt;br /&gt;
* Incubator update&lt;br /&gt;
** LBaaS code proceeding on feature branch&lt;br /&gt;
*** https://review.openstack.org/#/c/123262/&lt;br /&gt;
** We need LBaaS folks to rebase and review remaining patches to get them onto the feature branch&lt;br /&gt;
* nova/neutron interaction - refactoring/rewriting/or-something neutronv2/api.py&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-10-13)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
Active Projects are Discussed on the [[Meetings/Neutron-L3-Subteam|Team meeting page]].&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
No updates - work suspended in lieu of Juno bug fixing and stabilization&lt;br /&gt;
* Flavors framework:&lt;br /&gt;
** Spec: https://review.openstack.org/102723 - in review&lt;br /&gt;
** Implementation: https://review.openstack.org/#/c/105982&lt;br /&gt;
* Service Base and insertion - was -2'ed, won't make it into J&lt;br /&gt;
** https://review.openstack.org/#/c/113975&lt;br /&gt;
** https://review.openstack.org/#/c/116090&lt;br /&gt;
* Service Chaining - was -2'ed, won't make it into J&lt;br /&gt;
** Neutron: https://review.openstack.org/113737&lt;br /&gt;
** CLI: https://review.openstack.org/113738&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* [[Meetings/Neutron-IPv6-Subteam]]&lt;br /&gt;
* Requiring a newer version of dnsmasq for neuron means requiring Ubuntu 14.04&lt;br /&gt;
* IPv6 support in all in-tree plugins by Kilo?&lt;br /&gt;
* Bugs: https://bugs.launchpad.net/neutron/+bugs?field.tag=ipv6&lt;br /&gt;
&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1335984 Allow DHCPv6 reply from server to client] - High priority bug fix that needs cores&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs another core reviewer&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
* Reviews are tracked at [[Tracking_ML2_Subgroup_Reviews]]&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
* Also, now in Stackforge repo: https://github.com/stackforge/group-based-policy&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(no new update)&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration:&lt;br /&gt;
** https://review.openstack.org/113359 (merged)&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
* Spec submissions open.&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=ReleaseNotes/Juno&amp;diff=64909</id>
		<title>ReleaseNotes/Juno</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=ReleaseNotes/Juno&amp;diff=64909"/>
				<updated>2014-10-13T20:36:45Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Upgrade Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| style=&amp;quot;color:#000000; border:solid 1px #A8A8A8; padding:0.5em; margin:0.5em 0; background-color:#FFFFFF;font-size:95%; vertical-align:middle;&amp;quot;&lt;br /&gt;
| style=&amp;quot;padding:1em;width: 40px&amp;quot; | [[Image:Warning.svg|40px]]&lt;br /&gt;
| '''Release Under Development'''&lt;br /&gt;
This release of OpenStack is under development and has yet to be completed.&lt;br /&gt;
&lt;br /&gt;
The information on this page may not accurately reflect the state of release at the current point in time.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= OpenStack 2014.2 (Juno) Release Notes =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;column-count:3;-moz-column-count:3;-webkit-column-count:3&amp;quot;&amp;gt;&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== General Upgrade Notes ==&lt;br /&gt;
&lt;br /&gt;
* The simplejson package is an optional requirement in most projects, therefore it's not listed in all project's requirements.txt file. However, if you're using it, e.g. better performance with python 2.6 on RHEL 6, then you will need simplejson &amp;gt;= 2.2.0.  See https://bugs.launchpad.net/oslo-incubator/+bug/1361230 for details.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Object Storage (Swift) ==&lt;br /&gt;
&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
*  A list of all updated, deprecated or removed options in swift can be found at: http://docs.openstack.org/trunk/config-reference/content/swift-conf-changes-master.html&lt;br /&gt;
* As part of an effort to eventually update the default port to swift to an non-IANA-assigned range, bind_port is now a required setting. Anyone currently explicitly setting the ports will not be affected. However, if you do not currently set the ports, please ensure that your *_server.conf has bind_port set to match your ring as part of your upgrade.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Compute (Nova) ==&lt;br /&gt;
&lt;br /&gt;
There is a summary of specifications for the Juno release of Nova at [[Nova/Juno-Specs]].&lt;br /&gt;
&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
==== Upgrade Support ====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
==== Compute Drivers ====&lt;br /&gt;
&lt;br /&gt;
===== Hyper-V =====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
===== Libvirt (KVM) =====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
===== VMware =====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
===== XenServer =====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
==== API ====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
==== Scheduler ====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
==== Other Features ====&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
* A list of all updated, deprecated or removed options in Nova can be found at: http://docs.openstack.org/trunk/config-reference/content/nova-conf-changes-master.html&lt;br /&gt;
* The nova-manage flavor subcommand is deprecated in Juno and will be removed in the 2015.1 (K) release: https://review.openstack.org/#/c/86122/&lt;br /&gt;
* https://review.openstack.org/#/c/102212/&lt;br /&gt;
* Minimum required libvirt version is now 0.9.11: https://review.openstack.org/#/c/58494/&lt;br /&gt;
* Nova is now supporting the [https://review.openstack.org/#/c/43986/ Cinder V2 API]. The Cinder V1 API is deprecated in Juno and Nova will switch over to Cinder V2 by default in the &amp;quot;L&amp;quot; release.&lt;br /&gt;
* Debug log output in python-novaclient has [https://review.openstack.org/#/c/98443/ changed slightly] to improve readability. The sha1 hash of the keystone token is now printed instead of the token itself - greatly shortening the amount of content being printed while still retaining the ability to determine token mismatch scenarios. In addition, some extra '\n' characters that were being added are removed. ''Double-check any log parsers!''&lt;br /&gt;
* libvirt.volume_drivers config param for nova.conf is deprecated, to be removed in the Lxxxx release. In general, this should affect only a small number of developers working on drivers. If this is you, the recommended approach is to continue your work inside a nova tree.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Image Service (Glance) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
* Asynchronous Processing&lt;br /&gt;
* Pull of glance.store into its own library&lt;br /&gt;
* [http://docs.openstack.org/developer/glance/metadefs-concepts.html Metadata Definitions Catalog]&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
*  A list of all updated, deprecated or removed options in Glance can be found at: http://docs.openstack.org/trunk/config-reference/content/glance-conf-changes-master.html&lt;br /&gt;
* The ability to upload a public image is now admin-only by default. To continue to use the previous behaviour, edit the publicize_image flag in etc/policy.json to remove the role restriction.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Dashboard (Horizon) ==&lt;br /&gt;
&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
* FLAVOR_EXTRA_KEYS setting deprecated.  The use of this key has been replaced with direct calls to the nova and [http://docs.openstack.org/developer/glance/metadefs-concepts.html glance api] as appropriate.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Identity (Keystone) ==&lt;br /&gt;
&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
* Keystone now has experimental support for [http://docs.openstack.org/developer/keystone/configure_federation.html#keystone-as-an-identity-provider-idp Keystone-to-Keystone federation], where one instance acts as an Identity Provider, and the other a Service Provider.&lt;br /&gt;
* PKIZ is a new token provider available for users of PKI tokens, which simply adds zlib-based compression to traditional PKI tokens.&lt;br /&gt;
* The hashing algorithm used for PKI tokens has been made configurable (the default is still MD5, but the Keystone team recommends that deployments migrate to SHA256).&lt;br /&gt;
* Identity-driver-configuration-per-domain now supports Internet domain names of arbitrary hierarchical complexity (for example, &amp;lt;code&amp;gt;customer.cloud.example.com&amp;lt;/code&amp;gt;).&lt;br /&gt;
* The LDAP identity backend now supports &amp;lt;code&amp;gt;description&amp;lt;/code&amp;gt; as an attribute of users.&lt;br /&gt;
* Identity API v3 requests are now validated via JSON Schema.&lt;br /&gt;
* In the case of multiple identity backends, Keystone can now map arbitrary resource IDs to arbitrary backends.&lt;br /&gt;
* &amp;lt;code&amp;gt;keystoneclient.middleware.auth_token&amp;lt;/code&amp;gt; has been moved into it's own repository, &amp;lt;code&amp;gt;keystonemiddleware.auth_token&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Identity API v3 now supports a discrete call to retrieve a service catalog, &amp;lt;code&amp;gt;GET /v3/auth/catalog&amp;lt;/code&amp;gt;.&lt;br /&gt;
* Federated authentication events and local role assignment operations now result in CADF (audit) notifications.&lt;br /&gt;
* Keystone can now associate a given policy blob with one or more endpoints.&lt;br /&gt;
* Keystone now provides JSON Home documents on the root API endpoints in response to &amp;lt;code&amp;gt;Accept: application/json-home&amp;lt;/code&amp;gt; headers.&lt;br /&gt;
* Hiding endpoints from client's service catalogs is now more easily manageable via &amp;lt;code&amp;gt;OS-EP-FILTER&amp;lt;/code&amp;gt;.&lt;br /&gt;
* The credentials collection API is now filterable per associated user (&amp;lt;code&amp;gt;GET /v3/credentials?user_id={user_id}&amp;lt;/code&amp;gt;).&lt;br /&gt;
* New, generic API endpoints are available for retrieving authentication-related data, such as a service catalog, available project scopes, and available domain scopes.&lt;br /&gt;
* Keystone now supports mapping the user &amp;lt;code&amp;gt;enabled&amp;lt;/code&amp;gt; attribute to the &amp;lt;code&amp;gt;lock&amp;lt;/code&amp;gt; attribute in LDAP (and inverting the corresponding boolean value accordingly).&lt;br /&gt;
* A CA certificate file is now configurable for LDAPS connections.&lt;br /&gt;
* The templated catalog backend now supports generating service catalogs for Identity API v3.&lt;br /&gt;
* Service names were added to the v3 service catalog.&lt;br /&gt;
* Services can now be filtered by name (&amp;lt;code&amp;gt; GET /v3/services?name={service_name}&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
&lt;br /&gt;
* Due to the simpler out-of-the-box experience, the default token provider is now UUID instead of PKI.&lt;br /&gt;
* Database migrations for releases prior to Havana have been dropped, meaning that you must upgrade to the Juno release from either a Havana or Icehouse deployment.&lt;br /&gt;
* A comprehensive list of all updated, deprecated or removed options in Keystone can be found at: http://docs.openstack.org/trunk/config-reference/content/keystone-conf-changes-master.html&lt;br /&gt;
** All &amp;lt;code&amp;gt;token_api&amp;lt;/code&amp;gt; methods are now deprecated.&lt;br /&gt;
** LDAP configuration options that previously contained the deprecated &amp;lt;code&amp;gt;tenant&amp;lt;/code&amp;gt; terminology have been superseded by options using the term &amp;lt;code&amp;gt;project&amp;lt;/code&amp;gt;.&lt;br /&gt;
** Proxy methods from the identity backend to the assignment backend (created to provide backwards compatibility as a result of the split of the Assignment backend from the Identity backend), have been removed. This should only affect custom, out-of-tree API extensions.&lt;br /&gt;
** Loading authentication plugins solely by class name in &amp;lt;code&amp;gt;keystone.conf&amp;lt;/code&amp;gt; is now deprecated in favor of loading them by &amp;lt;code&amp;gt;custom-method-name = custom_package.CustomClass&amp;lt;/code&amp;gt; pairs, and then defining the sequence of authentication methods as a list (&amp;lt;code&amp;gt;methods = custom-method-name, password&amp;lt;/code&amp;gt;).&lt;br /&gt;
** In-tree token drivers (&amp;lt;code&amp;gt;keystone.token.backends&amp;lt;/code&amp;gt;) have been moved to &amp;lt;code&amp;gt;keystone.token.persistence.backends&amp;lt;/code&amp;gt;. Proxy objects exist to maintain compatibility. If a non-default value is used, it is recommended the value of the &amp;lt;code&amp;gt;driver&amp;lt;/code&amp;gt; option in the &amp;lt;code&amp;gt;[token]&amp;lt;/code&amp;gt; section of &amp;lt;code&amp;gt;keystone.conf&amp;lt;/code&amp;gt; is updated to use the new location.&lt;br /&gt;
* All KVS backends besides the &amp;lt;code&amp;gt;token&amp;lt;/code&amp;gt; driver have been formally deprecated.&lt;br /&gt;
* LDAP/AD configuration: All configuration options containing the term &amp;quot;tenant&amp;quot; have been deprecated in favor of similarly named configuration options using the term &amp;quot;project&amp;quot; (for example, &amp;lt;code&amp;gt;tenant_id_attribute&amp;lt;/code&amp;gt; has been replaced by &amp;lt;code&amp;gt;project_id_attribute&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
== OpenStack Network Service (Neutron) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
* DB migration refactor and new timeline&lt;br /&gt;
* Distributed Virtual Router Support (DVR)&lt;br /&gt;
* Full IPV6 support for tenant networks&lt;br /&gt;
* High Availability for the L3 Agent&lt;br /&gt;
* ipset support for security groups in place of iptables (this option is configurable)&lt;br /&gt;
* L3 agent performance improvements&lt;br /&gt;
* Migration to oslo.messaging library for RPC communication.&lt;br /&gt;
* Security group rules for devices RPC call refactoring (a huge performance improvement)&lt;br /&gt;
&lt;br /&gt;
* New Plugins supported in Juno include the following:&lt;br /&gt;
** A10 Networks LBaaS driver for the LBaaS V1 API&lt;br /&gt;
** Arista L3 routing plugin&lt;br /&gt;
** Big Switch L3 routing plugin&lt;br /&gt;
** Brocade L3 routing plugin&lt;br /&gt;
** Cisco APIC ML2 Driver (including a L3 routing plugin).&lt;br /&gt;
** Cisco CSR L3 routing plugin&lt;br /&gt;
** Freescale SDN ML2 Mechanism Driver&lt;br /&gt;
** Nuage Networks ML2 Mechanism Driver&lt;br /&gt;
** SR-IOV capable NIC ML2 Mechanism Driver&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
None yet.&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
* A list of all updated, deprecated or removed options in neutron can be found at: http://docs.openstack.org/trunk/config-reference/content/neutron-conf-changes-master.html&lt;br /&gt;
* Attribute level policies dependent on resources are not enforced anymore. Meaning that some older policies from Icehouse are not needed. (e.g. &amp;quot;get_port:binding:vnic_type&amp;quot;: &amp;quot;rule:admin_or_owner&amp;quot;).&lt;br /&gt;
* The following plugins are deprecated in Juno:&lt;br /&gt;
** Cisco Nexus Sub-Plugin (The Nexus 1000V Sub-Plugin is still retained and supported in Juno).&lt;br /&gt;
** Mellanox Plugin&lt;br /&gt;
** Ryu Plugin&lt;br /&gt;
*XML support in the API is deprecated. Users and deployers should migrate to JSON for API interactions as soon as possible since the XML support will be removed in the Kilo (2015.1) release.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Block Storage (Cinder) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
&lt;br /&gt;
* Nova is now supporting the [https://review.openstack.org/#/c/43986/ Cinder V2 API]. The Cinder V1 API is deprecated in Juno and Nova will switch over to Cinder V2 by default in the &amp;quot;L&amp;quot; release.&lt;br /&gt;
&lt;br /&gt;
== OpenStack Telemetry (Ceilometer) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
* TBD&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
*   A list of all updated, deprecated or removed options in swift can be found at: http://docs.openstack.org/trunk/config-reference/content/ceilometer-conf-changes-master.html&lt;br /&gt;
&lt;br /&gt;
== OpenStack Orchestration (Heat) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
* Update Failure Recovery&lt;br /&gt;
* implementation of new resources&lt;br /&gt;
** OS::Glance::Image&lt;br /&gt;
** OS::Heat::SwiftSignal&lt;br /&gt;
** OS::Sahara::NodeGroupTemplate&lt;br /&gt;
** OS::Sahara::ClusterTemplate&lt;br /&gt;
** OS::Heat::StructuredDeployments&lt;br /&gt;
** OS::Heat::SoftwareDeployments&lt;br /&gt;
** OS::Heat::SoftwareComponent&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
*   A list of all updated, deprecated or removed options in heat can be found at: http://docs.openstack.org/trunk/config-reference/content/heat-conf-changes-master.html&lt;br /&gt;
&lt;br /&gt;
== OpenStack Database service (Trove) ==&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
* support for PostgreSQL databases&lt;br /&gt;
* per datastore volume support&lt;br /&gt;
* support for MongDB clusters&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
None yet&lt;br /&gt;
&lt;br /&gt;
== OpenStack Documentation ==&lt;br /&gt;
&lt;br /&gt;
=== Key New Features ===&lt;br /&gt;
&lt;br /&gt;
* Architecture Design Guide&lt;br /&gt;
* move of the High Availability Guide into a separate repository&lt;br /&gt;
* move of the Security Guide into a separate repository&lt;br /&gt;
&lt;br /&gt;
=== Known Issues ===&lt;br /&gt;
&lt;br /&gt;
=== Upgrade Notes ===&lt;br /&gt;
None yet&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64907</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64907"/>
				<updated>2014-10-13T20:31:02Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
'''Meeting time: The OpenStack Networking Team ([[Neutron]]) holds public meetings alternating between Mondays at 2100 UTC (#openstack-meeting) and Tuesdays at 1400 UTC (#openstack-meeting). Everyone is encouraged to attend.'''&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
'''Monday (10/13/2014) at 2100 UTC on #openstack-meeting'''&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-RC2 is cut:&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-rc2&lt;br /&gt;
** https://launchpad.net/neutron/juno/juno-rc2/+download/neutron-2014.2.rc2.tar.gz&lt;br /&gt;
** Please try this out and report bugs in launchpad&lt;br /&gt;
** For release critical bugs, please tag them as &amp;quot;juno-rc-potential&amp;quot; for a potential RC3 release of Neutron&lt;br /&gt;
* Release Notes for Juno are in the process of being updated&lt;br /&gt;
** https://wiki.openstack.org/wiki/ReleaseNotes/Juno#OpenStack_Network_Service_.28Neutron.29&lt;br /&gt;
** Please look them over and provide input there&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
Juno-RC1 Potential bugs for an RC2&lt;br /&gt;
* https://bugs.launchpad.net/neutron/+bugs?field.tag=juno-rc-potential&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1364283 - Edgar Magana - WIP: Juno&lt;br /&gt;
* 2 bugs more but they are vendor specific&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== On Demand Agenda ===&lt;br /&gt;
* Neutron core peer-review process (mestery)&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-peer-review&lt;br /&gt;
* Kilo Design Summit Topics (mestery and markmcclain)&lt;br /&gt;
* Non-NSX VMware driver discussion (garyk and armax)&lt;br /&gt;
* XML is going away -- we really mean it this time (markmcclain)&lt;br /&gt;
&lt;br /&gt;
== Deprecated Meeting Agenda ==&lt;br /&gt;
&lt;br /&gt;
Much of the following deprecated content was here as an anchor for Neutron sub teams and to report sub team status.  The [[NeutronSubTeams]] page will serve that purpose going forward.&lt;br /&gt;
&lt;br /&gt;
The following are all from the prior meetings, and will be cleaned up and removed by 10-21-2014&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Kilo Design Summit Topics Etherpad&lt;br /&gt;
** For Kilo, the online proposal tool is going away&lt;br /&gt;
** Teams will work around a shared etherpad to setup design summit sessions&lt;br /&gt;
*** http://lists.openstack.org/pipermail/openstack-dev/2014-September/045844.html&lt;br /&gt;
** Our etherpad is here linked from here (https://wiki.openstack.org/wiki/Summit/Planning)&lt;br /&gt;
*** https://etherpad.openstack.org/p/kilo-neutron-summit-topics&lt;br /&gt;
* Incubator update&lt;br /&gt;
** LBaaS code proceeding on feature branch&lt;br /&gt;
*** https://review.openstack.org/#/c/123262/&lt;br /&gt;
** We need LBaaS folks to rebase and review remaining patches to get them onto the feature branch&lt;br /&gt;
* nova/neutron interaction - refactoring/rewriting/or-something neutronv2/api.py&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-10-13)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
Active Projects are Discussed on the [[Meetings/Neutron-L3-Subteam|Team meeting page]].&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
No updates - work suspended in lieu of Juno bug fixing and stabilization&lt;br /&gt;
* Flavors framework:&lt;br /&gt;
** Spec: https://review.openstack.org/102723 - in review&lt;br /&gt;
** Implementation: https://review.openstack.org/#/c/105982&lt;br /&gt;
* Service Base and insertion - was -2'ed, won't make it into J&lt;br /&gt;
** https://review.openstack.org/#/c/113975&lt;br /&gt;
** https://review.openstack.org/#/c/116090&lt;br /&gt;
* Service Chaining - was -2'ed, won't make it into J&lt;br /&gt;
** Neutron: https://review.openstack.org/113737&lt;br /&gt;
** CLI: https://review.openstack.org/113738&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* [[Meetings/Neutron-IPv6-Subteam]]&lt;br /&gt;
* Requiring a newer version of dnsmasq for neuron means requiring Ubuntu 14.04&lt;br /&gt;
* IPv6 support in all in-tree plugins by Kilo?&lt;br /&gt;
* Bugs: https://bugs.launchpad.net/neutron/+bugs?field.tag=ipv6&lt;br /&gt;
&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1335984 Allow DHCPv6 reply from server to client] - High priority bug fix that needs cores&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs another core reviewer&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
* Reviews are tracked at [[Tracking_ML2_Subgroup_Reviews]]&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
* Also, now in Stackforge repo: https://github.com/stackforge/group-based-policy&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(no new update)&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration:&lt;br /&gt;
** https://review.openstack.org/113359 (merged)&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
* Spec submissions open.&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64906</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=64906"/>
				<updated>2014-10-13T20:29:45Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* On Demand Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
'''Meeting time: The OpenStack Networking Team ([[Neutron]]) holds public meetings alternating between Mondays at 2100 UTC (#openstack-meeting) and Tuesdays at 1400 UTC (#openstack-meeting). Everyone is encouraged to attend.'''&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
'''Monday (10/13/2014) at 2100 UTC on #openstack-meeting'''&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-RC2 is cut:&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-rc2&lt;br /&gt;
** https://launchpad.net/neutron/juno/juno-rc2/+download/neutron-2014.2.rc2.tar.gz&lt;br /&gt;
** Please try this out and report bugs in launchpad&lt;br /&gt;
** For release critical bugs, please tag them as &amp;quot;juno-rc-potential&amp;quot; for a potential RC3 release of Neutron&lt;br /&gt;
* Release Notes for Juno are in the process of being updated&lt;br /&gt;
** https://wiki.openstack.org/wiki/ReleaseNotes/Juno#OpenStack_Network_Service_.28Neutron.29&lt;br /&gt;
** Please look them over and provide input there&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
Juno-RC1 Potential bugs for an RC2&lt;br /&gt;
* https://bugs.launchpad.net/neutron/+bugs?field.tag=juno-rc-potential&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Do we want to fix [https://bugs.launchpad.net/neutron/+bug/1255142] &amp;quot;unable to get router's external IP when non admin (blocker for VPNaaS)&amp;quot; for Juno?&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1364283 - Edgar Magana - WIP: Juno&lt;br /&gt;
* 2 bugs more but they are vendor specific&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== On Demand Agenda ===&lt;br /&gt;
* Neutron core peer-review process (mestery)&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-peer-review&lt;br /&gt;
* Kilo Design Summit Topics (mestery and markmcclain)&lt;br /&gt;
* Non-NSX VMware driver discussion (garyk and armax)&lt;br /&gt;
* XML is going away -- we really mean it this time (markmcclain)&lt;br /&gt;
&lt;br /&gt;
== Deprecated Meeting Agenda ==&lt;br /&gt;
&lt;br /&gt;
Much of the following deprecated content was here as an anchor for Neutron sub teams and to report sub team status.  The [[NeutronSubTeams]] page will serve that purpose going forward.&lt;br /&gt;
&lt;br /&gt;
The following are all from the prior meetings, and will be cleaned up and removed by 10-21-2014&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Kilo Design Summit Topics Etherpad&lt;br /&gt;
** For Kilo, the online proposal tool is going away&lt;br /&gt;
** Teams will work around a shared etherpad to setup design summit sessions&lt;br /&gt;
*** http://lists.openstack.org/pipermail/openstack-dev/2014-September/045844.html&lt;br /&gt;
** Our etherpad is here linked from here (https://wiki.openstack.org/wiki/Summit/Planning)&lt;br /&gt;
*** https://etherpad.openstack.org/p/kilo-neutron-summit-topics&lt;br /&gt;
* Incubator update&lt;br /&gt;
** LBaaS code proceeding on feature branch&lt;br /&gt;
*** https://review.openstack.org/#/c/123262/&lt;br /&gt;
** We need LBaaS folks to rebase and review remaining patches to get them onto the feature branch&lt;br /&gt;
* nova/neutron interaction - refactoring/rewriting/or-something neutronv2/api.py&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-10-13)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
Active Projects are Discussed on the [[Meetings/Neutron-L3-Subteam|Team meeting page]].&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
No updates - work suspended in lieu of Juno bug fixing and stabilization&lt;br /&gt;
* Flavors framework:&lt;br /&gt;
** Spec: https://review.openstack.org/102723 - in review&lt;br /&gt;
** Implementation: https://review.openstack.org/#/c/105982&lt;br /&gt;
* Service Base and insertion - was -2'ed, won't make it into J&lt;br /&gt;
** https://review.openstack.org/#/c/113975&lt;br /&gt;
** https://review.openstack.org/#/c/116090&lt;br /&gt;
* Service Chaining - was -2'ed, won't make it into J&lt;br /&gt;
** Neutron: https://review.openstack.org/113737&lt;br /&gt;
** CLI: https://review.openstack.org/113738&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* [[Meetings/Neutron-IPv6-Subteam]]&lt;br /&gt;
* Requiring a newer version of dnsmasq for neuron means requiring Ubuntu 14.04&lt;br /&gt;
* IPv6 support in all in-tree plugins by Kilo?&lt;br /&gt;
* Bugs: https://bugs.launchpad.net/neutron/+bugs?field.tag=ipv6&lt;br /&gt;
&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1335984 Allow DHCPv6 reply from server to client] - High priority bug fix that needs cores&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs another core reviewer&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
* Reviews are tracked at [[Tracking_ML2_Subgroup_Reviews]]&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
* Also, now in Stackforge repo: https://github.com/stackforge/group-based-policy&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(no new update)&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration:&lt;br /&gt;
** https://review.openstack.org/113359 (merged)&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
* Spec submissions open.&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=63982</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=63982"/>
				<updated>2014-09-29T21:03:01Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Open Discussion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
'''Meeting time: The OpenStack Networking Team ([[Neutron]]) holds public meetings alternating between Mondays at 2100 UTC (#openstack-meeting) and Tuesdays at 1400 UTC (#openstack-meeting). Everyone is encouraged to attend.'''&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* mestery (9-29-2014): markmcclain to run the weekly meeting in my absence&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
'''Monday (9/30/2014) at 2100 UTC on #openstack-meeting'''&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Release Notes for Juno are in the process of being updated&lt;br /&gt;
** https://wiki.openstack.org/wiki/ReleaseNotes/Juno#OpenStack_Network_Service_.28Neutron.29&lt;br /&gt;
** Please look them over and provide input there&lt;br /&gt;
* Juno-RC1 will be cut this week, likely 9-25&lt;br /&gt;
** mestery will have more updates after his 1:1 with ttx today&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-rc1&lt;br /&gt;
** We are now in feature freeze, string freeze, and dependency freeze.&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Do we want to fix [https://bugs.launchpad.net/neutron/+bug/1255142] &amp;quot;unable to get router's external IP when non admin (blocker for VPNaaS)&amp;quot; for Juno?&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Incubator update&lt;br /&gt;
** LBaaS code proceeding on feature branch&lt;br /&gt;
*** https://review.openstack.org/#/c/123262/&lt;br /&gt;
** We need LBaaS folks to rebase and review remaining patches to get them onto the feature branch&lt;br /&gt;
* Kilo Design Summit Topics Etherpad&lt;br /&gt;
** For Kilo, the online proposal tool is going away&lt;br /&gt;
** Teams will work around a shared etherpad to setup design summit sessions&lt;br /&gt;
*** http://lists.openstack.org/pipermail/openstack-dev/2014-September/045844.html&lt;br /&gt;
** Our etherpad is here linked from here (https://wiki.openstack.org/wiki/Summit/Planning)&lt;br /&gt;
*** https://etherpad.openstack.org/p/kilo-neutron-summit-topics&lt;br /&gt;
* nova/neutron interaction - refactoring/rewriting/or-something neutronv2/api.py&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Ann and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing (complete)&lt;br /&gt;
** Full Tempest Job is voting (with service plugins disable for other projects)&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** https://review.openstack.org/#/c/105785/&lt;br /&gt;
** On hold pending completion of gap 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** complete&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
** Still in discussion on mailing.&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
** Note: (emagana) The docs team has decided to not document all available options for plugins/drivers even if they are open-sourced.&lt;br /&gt;
*** The only options documented will be the default ones (i.e. ML2 with OVS).&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1364283 - Edgar Magana - WIP: Juno&lt;br /&gt;
* 2 bugs more but they are vendor specific&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-09-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Please see [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page].  Need people willing to grab code and test.&lt;br /&gt;
** Working on [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-dvr-backlog&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on backlog work] and hardening.&lt;br /&gt;
** [https://review.openstack.org/#/c/120603/ Infra changes to make experimental dvr job a non-voting].  The [http://graphite.openstack.org/render/?from=-10days&amp;amp;height=500&amp;amp;until=now&amp;amp;width=1200&amp;amp;bgcolor=ffffff&amp;amp;fgcolor=000000&amp;amp;yMax=100&amp;amp;yMin=0&amp;amp;target=color(alias(movingAverage(asPercent(stats.zuul.pipeline.check.job.check-tempest-dsvm-neutron-dvr.FAILURE,sum(stats.zuul.pipeline.check.job.check-tempest-dsvm-neutron-dvr.%7BSUCCESS,FAILURE%7D)),%2736hours%27),%20%27check-tempest-dsvm-neutron-dvr%27),%27orange%27) error rate] is too high. &lt;br /&gt;
*** [https://bugs.launchpad.net/neutron/+bug/1371732 Critical bug] with [https://review.openstack.org/#/c/122805/ fix proposed] is expected to lower the failure rate significantly.&lt;br /&gt;
*** [https://review.openstack.org/#/c/120885/ This patch] exposed a race condition that causes other spurious failures ([https://review.openstack.org/#/c/121729/ revert here]).  Working on a fix.&lt;br /&gt;
&lt;br /&gt;
* rootwrap-daemon-mode&lt;br /&gt;
** '''Code accepted in oslo-rootwrap'''!&lt;br /&gt;
** Won't make it in Neutron.  -2s never reconsidered as discussed.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches merged!&lt;br /&gt;
** Still more functional testing to come.&lt;br /&gt;
** See [https://wiki.openstack.org/wiki/Meetings/Neutron-L3-Subteam#Blueprint:_l3-high-availability_.28safchain.2C_amuller.29 overview of patches here].&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ha Bugs listed here]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Deferred until Kilo.  Code in progress on [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z bp/bgp-dynamic-routing] gerrit topic&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
No updates - work suspended in lieu of Juno bug fixing and stabilization&lt;br /&gt;
* Flavors framework:&lt;br /&gt;
** Spec: https://review.openstack.org/102723 - in review&lt;br /&gt;
** Implementation: https://review.openstack.org/#/c/105982&lt;br /&gt;
* Service Base and insertion - was -2'ed, won't make it into J&lt;br /&gt;
** https://review.openstack.org/#/c/113975&lt;br /&gt;
** https://review.openstack.org/#/c/116090&lt;br /&gt;
* Service Chaining - was -2'ed, won't make it into J&lt;br /&gt;
** Neutron: https://review.openstack.org/113737&lt;br /&gt;
** CLI: https://review.openstack.org/113738&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* [[Meetings/Neutron-IPv6-Subteam]]&lt;br /&gt;
* Requiring a newer version of dnsmasq for neuron means requiring Ubuntu 14.04&lt;br /&gt;
* IPv6 support in all in-tree plugins by Kilo?&lt;br /&gt;
* Bugs: https://bugs.launchpad.net/neutron/+bugs?field.tag=ipv6&lt;br /&gt;
&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1335984 Allow DHCPv6 reply from server to client] - High priority bug fix that needs cores&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs another core reviewer&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
* Reviews are tracked at [[Tracking_ML2_Subgroup_Reviews]]&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
* Also, now in Stackforge repo: https://github.com/stackforge/group-based-policy&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(no new update)&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration:&lt;br /&gt;
** https://review.openstack.org/113359 (merged)&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
* Spec submissions open.&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee&amp;diff=63281</id>
		<title>Meetings/TechnicalCommittee</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee&amp;diff=63281"/>
				<updated>2014-09-22T23:03:56Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Agenda */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
The OpenStack Technical Committee is one of the governing bodies of the OpenStack project. It is an elected group that represents the contributors to the project, and has oversight on all technical matters.&lt;br /&gt;
&lt;br /&gt;
The Technical Committee is formally defined in the [[Governance/Foundation/Bylaws|OpenStack Foundation bylaws]] (in particular article 4.1(b), article 4.13 and Appendix 4) and further refined in the [[Governance/Foundation/TechnicalCommittee|Technical Committee charter]].&lt;br /&gt;
&lt;br /&gt;
=== Members ===&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|- bgcolor=#eeeeee&lt;br /&gt;
| Name                  &lt;br /&gt;
| End of term    &lt;br /&gt;
|-&lt;br /&gt;
|  James E. Blair (jeblair)           &lt;br /&gt;
|  April 2015   &lt;br /&gt;
|-&lt;br /&gt;
|  Russell Bryant (russellb)      &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Thierry Carrez (ttx)           &lt;br /&gt;
|  April 2015&lt;br /&gt;
|-&lt;br /&gt;
|  Sean Dague (sdague)       &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Anne Gentle (annegentle)       &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Doug Hellmann (dhellmann)      &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Vish Ishaya (vishy)            &lt;br /&gt;
|  April 2015&lt;br /&gt;
|-&lt;br /&gt;
|  Mark McClain (markmcclain)      &lt;br /&gt;
|  April 2015&lt;br /&gt;
|-&lt;br /&gt;
|  Mark McLoughlin (markmc)      &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Jay Pipes (jaypipes)         &lt;br /&gt;
|  April 2015&lt;br /&gt;
|-&lt;br /&gt;
|  Michael Still (mikal)         &lt;br /&gt;
|  April 2015&lt;br /&gt;
|-&lt;br /&gt;
|  Monty Taylor (mordred)         &lt;br /&gt;
|  October 2014&lt;br /&gt;
|-&lt;br /&gt;
|  Devananda van der Veen (devananda)&lt;br /&gt;
|  April 2015&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Mailing-list ===&lt;br /&gt;
&lt;br /&gt;
The [http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack-tc openstack-tc mailing-list] is used for communication within the Technical Committee. Posting is moderated for non-members.&lt;br /&gt;
&lt;br /&gt;
=== Meeting ===&lt;br /&gt;
&lt;br /&gt;
Next meeting: Tuesday September 23rd, 20:00 UTC&lt;br /&gt;
&lt;br /&gt;
==== Agenda ====&lt;br /&gt;
&lt;br /&gt;
* Final pass on extra-atcs before PTL election roll generation&lt;br /&gt;
** Add Juno Compute co-authored-by authors to extra-atcs. [https://review.openstack.org/119666]&lt;br /&gt;
** Adds Documentation co-authors as ATCs. [https://review.openstack.org/119757]&lt;br /&gt;
** Adds Telemetry Juno co-authors as ATCs [https://review.openstack.org/119794]&lt;br /&gt;
** Script to automate adding extra-atcs [https://review.openstack.org/121730]&lt;br /&gt;
** Naive script to verify extra-atc foundation status [https://review.openstack.org/121696]&lt;br /&gt;
* Recommendation to Adopt DCO as CLA [https://review.openstack.org/120260]&lt;br /&gt;
* Testing interface update&lt;br /&gt;
** Import the Project Testing Interface description [https://review.openstack.org/119872]&lt;br /&gt;
** Two minor style cleanups [https://review.openstack.org/119873]&lt;br /&gt;
** Update testing interface to reflect reality [https://review.openstack.org/119874]&lt;br /&gt;
** Add a docs environment to the testing interface [https://review.openstack.org/119875]&lt;br /&gt;
* Other governance changes&lt;br /&gt;
** Propose guidelines for adopting new official projects [https://review.openstack.org/116727]&lt;br /&gt;
** Add openstack/designate-dashboard to the DNS Services program [https://review.openstack.org/119549]&lt;br /&gt;
** Add keystoneclient-kerberos repo to Keystone [https://review.openstack.org/120310]&lt;br /&gt;
** Add ha-guide to Documentation program [https://review.openstack.org/121643]&lt;br /&gt;
* Open discussion&lt;br /&gt;
&lt;br /&gt;
==== Backlog ====&lt;br /&gt;
These items have been proposed, but are not put on the agenda just yet. Could be that they have not been discussed on openstack-dev for the time mandated by our bylaws yet, or are blocked for some other reason, or are just delayed while we process the earlier requests backlog:&lt;br /&gt;
&lt;br /&gt;
* A Kilo plan for Zaqar, before summit&lt;br /&gt;
* Deeper dive into Swift &amp;quot;differences&amp;quot;, before summit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
At every milestone we should review progress on the incubation/integration gap coverage plans:&lt;br /&gt;
* [[Governance/TechnicalCommittee/Neutron_Gap_Coverage|Neutron gap coverage plan]]&lt;br /&gt;
* [[Governance/TechnicalCommittee/Trove_Gap_Coverage|Trove gap coverage plan]]&lt;br /&gt;
* [[Governance/TechnicalCommittee/Ceilometer_Gap_Coverage|Ceilometer gap coverage plan]]&lt;br /&gt;
* [[Governance/TechnicalCommittee/Horizon_Gap_Coverage|Horizon gap coverage plan]]&lt;br /&gt;
* [[Governance/TechnicalCommittee/Glance_Gap_Coverage|Glance gap coverage plan]]&lt;br /&gt;
* [[Governance/TechnicalCommittee/Heat_Gap_Coverage|Heat gap coverage plan]]&lt;br /&gt;
&lt;br /&gt;
==== Apologies for Absence ====&lt;br /&gt;
&lt;br /&gt;
* tbd&lt;br /&gt;
&lt;br /&gt;
=== Presenting a motion before the TC ===&lt;br /&gt;
&lt;br /&gt;
Motions need to be presented at least 4 business days before the next meeting scheduled time. They should be posted to openstack-dev@lists.openstack.org, then a pointer to that thread should be posted to openstack-tc@lists.openstack.org to make sure it gets the required attention from TC members. Upon verification, the TC Chair will put the motion on the agenda for the next meeting.&lt;br /&gt;
&lt;br /&gt;
Note that before being voted on, motions must now be presented as a [http://git.openstack.org/cgit/openstack/governance/ governance] change.&lt;br /&gt;
&lt;br /&gt;
=== Past meetings logs ===&lt;br /&gt;
&lt;br /&gt;
Logs of past TC meetings can be accessed at: http://eavesdrop.openstack.org/meetings/tc&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Design_Summit/Planning&amp;diff=62535</id>
		<title>Design Summit/Planning</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Design_Summit/Planning&amp;diff=62535"/>
				<updated>2014-09-12T20:06:53Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Topic proposal, discussion and selection */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Topic proposal, discussion and selection ==&lt;br /&gt;
&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-crossproject-summit-topics Cross-project workshops]&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-nova-summit-topics Nova]&lt;br /&gt;
* Swift&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-neutron-summit-topics Neutron]&lt;br /&gt;
* Keystone&lt;br /&gt;
* Glance&lt;br /&gt;
* Horizon&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-cinder-summit-topics Cinder]&lt;br /&gt;
* Heat&lt;br /&gt;
* Ceilometer&lt;br /&gt;
* Trove&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-sahara-summit-topics Sahara]&lt;br /&gt;
* Release management&lt;br /&gt;
* Infrastructure&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-qa-summit-topics QA]&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-oslo-summit-topics Oslo]&lt;br /&gt;
* Documentation&lt;br /&gt;
* TripleO&lt;br /&gt;
* Ironic&lt;br /&gt;
* [https://etherpad.openstack.org/p/kilo-zaqar-summit-topics Zaqar]&lt;br /&gt;
* Barbican&lt;br /&gt;
* Designate&lt;br /&gt;
* Manila&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61002</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61002"/>
				<updated>2014-08-20T17:07:18Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 1: Tempest Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ '''Complete''']&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: '''Full Tempest Job' voting for all projects w/o service enabled'''&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: &amp;lt;strike&amp;gt;juno-2&amp;lt;/strike&amp;gt; juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: '''Complete'''&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
Nova-network provides a networking mode called multi-host.  In this mode, every compute node serves as the network gateway for instances running locally.  This provides horizontal scalability and HA for the networking component.  Nova-network in its normal mode and Neutron historically only allow a single network node, which causes both scale and HA concerns.  Neutron must provide functionality such that its L3 agent is no longer a single point of failure or scaling bottleneck.&lt;br /&gt;
The Neutron team's answer to this is the DVR (distributed virtual router) project.&lt;br /&gt;
&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Status: '''Complete' for OVS''&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/neutron/+spec/neutron-ovs-dvr&lt;br /&gt;
* Spec: http://git.openstack.org/cgit/openstack/neutron-specs/tree/specs/juno/neutron-ovs-dvr.rst&lt;br /&gt;
* Gerrit: https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z&lt;br /&gt;
NOTE: need to discuss the fact that this requires OVS.&lt;br /&gt;
link to ML thread:&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
To fully deprecate nova-network, a migration to neutron needs to be put in place so nova-network users can successfully migrate from nova-network to neutron.  From the TC perspective, the requirement is:&lt;br /&gt;
  &lt;br /&gt;
  In the case that a project has intentionally duplicated functionality of&lt;br /&gt;
  another project, or portion of a project, the new project must reach a level&lt;br /&gt;
  of functionality and maturity such that we are ready to deprecate the old&lt;br /&gt;
  code and remove it after a well defined deprecation cycle.  The deprecation&lt;br /&gt;
  plan agreed to by the PTLs of each affected project, including details for&lt;br /&gt;
  how users will be able to migrate from the old to the new, must be submitted&lt;br /&gt;
  to the TC for review as a part of the graduation review.&lt;br /&gt;
&lt;br /&gt;
So, the primary requirements are:&lt;br /&gt;
* Nova must be willing to deprecate nova-network.&lt;br /&gt;
* The Neutron and Nova teams should work together to build a migration plan that both projects agree on.&lt;br /&gt;
&lt;br /&gt;
This gap is focused on #2.  The TC will review and officially bless the plan once it's deemed ready by both projects.&lt;br /&gt;
The most recent discussion about the migration plan can be found here: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041931.html&lt;br /&gt;
&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/nova/+spec/neutron-migration&lt;br /&gt;
* Spec: https://review.openstack.org/#/c/101921/&lt;br /&gt;
* Gerrit: &lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
One of the major concerns with users of nova-network switching to Neutron is around the overall quality of the open source backends available for Neutron.  It is of critical importance that the community can be convinced that using neutron with an open source backend provides stability and scalability that is as good as using nova-network.&lt;br /&gt;
The first goal for this gap is to document the scale limitations of the various open source Neutron backends.  Additionally, there must be a plan for addressing known limitations that represent a parity gap with nova-network.&lt;br /&gt;
&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61001</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61001"/>
				<updated>2014-08-20T17:07:00Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 1: Tempest Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ '''Complete''']&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: '''Full Tempest Job' voting for all projects w/o service enabled''&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: &amp;lt;strike&amp;gt;juno-2&amp;lt;/strike&amp;gt; juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: '''Complete'''&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
Nova-network provides a networking mode called multi-host.  In this mode, every compute node serves as the network gateway for instances running locally.  This provides horizontal scalability and HA for the networking component.  Nova-network in its normal mode and Neutron historically only allow a single network node, which causes both scale and HA concerns.  Neutron must provide functionality such that its L3 agent is no longer a single point of failure or scaling bottleneck.&lt;br /&gt;
The Neutron team's answer to this is the DVR (distributed virtual router) project.&lt;br /&gt;
&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Status: '''Complete' for OVS''&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/neutron/+spec/neutron-ovs-dvr&lt;br /&gt;
* Spec: http://git.openstack.org/cgit/openstack/neutron-specs/tree/specs/juno/neutron-ovs-dvr.rst&lt;br /&gt;
* Gerrit: https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z&lt;br /&gt;
NOTE: need to discuss the fact that this requires OVS.&lt;br /&gt;
link to ML thread:&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
To fully deprecate nova-network, a migration to neutron needs to be put in place so nova-network users can successfully migrate from nova-network to neutron.  From the TC perspective, the requirement is:&lt;br /&gt;
  &lt;br /&gt;
  In the case that a project has intentionally duplicated functionality of&lt;br /&gt;
  another project, or portion of a project, the new project must reach a level&lt;br /&gt;
  of functionality and maturity such that we are ready to deprecate the old&lt;br /&gt;
  code and remove it after a well defined deprecation cycle.  The deprecation&lt;br /&gt;
  plan agreed to by the PTLs of each affected project, including details for&lt;br /&gt;
  how users will be able to migrate from the old to the new, must be submitted&lt;br /&gt;
  to the TC for review as a part of the graduation review.&lt;br /&gt;
&lt;br /&gt;
So, the primary requirements are:&lt;br /&gt;
* Nova must be willing to deprecate nova-network.&lt;br /&gt;
* The Neutron and Nova teams should work together to build a migration plan that both projects agree on.&lt;br /&gt;
&lt;br /&gt;
This gap is focused on #2.  The TC will review and officially bless the plan once it's deemed ready by both projects.&lt;br /&gt;
The most recent discussion about the migration plan can be found here: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041931.html&lt;br /&gt;
&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/nova/+spec/neutron-migration&lt;br /&gt;
* Spec: https://review.openstack.org/#/c/101921/&lt;br /&gt;
* Gerrit: &lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
One of the major concerns with users of nova-network switching to Neutron is around the overall quality of the open source backends available for Neutron.  It is of critical importance that the community can be convinced that using neutron with an open source backend provides stability and scalability that is as good as using nova-network.&lt;br /&gt;
The first goal for this gap is to document the scale limitations of the various open source Neutron backends.  Additionally, there must be a plan for addressing known limitations that represent a parity gap with nova-network.&lt;br /&gt;
&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61000</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=61000"/>
				<updated>2014-08-20T17:05:30Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 5: Neutron replacement for Nova multi-host */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ '''Complete''']&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: &amp;lt;strike&amp;gt;juno-2&amp;lt;/strike&amp;gt; juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: '''Complete'''&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
Nova-network provides a networking mode called multi-host.  In this mode, every compute node serves as the network gateway for instances running locally.  This provides horizontal scalability and HA for the networking component.  Nova-network in its normal mode and Neutron historically only allow a single network node, which causes both scale and HA concerns.  Neutron must provide functionality such that its L3 agent is no longer a single point of failure or scaling bottleneck.&lt;br /&gt;
The Neutron team's answer to this is the DVR (distributed virtual router) project.&lt;br /&gt;
&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Status: '''Complete' for OVS''&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/neutron/+spec/neutron-ovs-dvr&lt;br /&gt;
* Spec: http://git.openstack.org/cgit/openstack/neutron-specs/tree/specs/juno/neutron-ovs-dvr.rst&lt;br /&gt;
* Gerrit: https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z&lt;br /&gt;
NOTE: need to discuss the fact that this requires OVS.&lt;br /&gt;
link to ML thread:&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
To fully deprecate nova-network, a migration to neutron needs to be put in place so nova-network users can successfully migrate from nova-network to neutron.  From the TC perspective, the requirement is:&lt;br /&gt;
  &lt;br /&gt;
  In the case that a project has intentionally duplicated functionality of&lt;br /&gt;
  another project, or portion of a project, the new project must reach a level&lt;br /&gt;
  of functionality and maturity such that we are ready to deprecate the old&lt;br /&gt;
  code and remove it after a well defined deprecation cycle.  The deprecation&lt;br /&gt;
  plan agreed to by the PTLs of each affected project, including details for&lt;br /&gt;
  how users will be able to migrate from the old to the new, must be submitted&lt;br /&gt;
  to the TC for review as a part of the graduation review.&lt;br /&gt;
&lt;br /&gt;
So, the primary requirements are:&lt;br /&gt;
* Nova must be willing to deprecate nova-network.&lt;br /&gt;
* The Neutron and Nova teams should work together to build a migration plan that both projects agree on.&lt;br /&gt;
&lt;br /&gt;
This gap is focused on #2.  The TC will review and officially bless the plan once it's deemed ready by both projects.&lt;br /&gt;
The most recent discussion about the migration plan can be found here: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041931.html&lt;br /&gt;
&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/nova/+spec/neutron-migration&lt;br /&gt;
* Spec: https://review.openstack.org/#/c/101921/&lt;br /&gt;
* Gerrit: &lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
One of the major concerns with users of nova-network switching to Neutron is around the overall quality of the open source backends available for Neutron.  It is of critical importance that the community can be convinced that using neutron with an open source backend provides stability and scalability that is as good as using nova-network.&lt;br /&gt;
The first goal for this gap is to document the scale limitations of the various open source Neutron backends.  Additionally, there must be a plan for addressing known limitations that represent a parity gap with nova-network.&lt;br /&gt;
&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=60999</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=60999"/>
				<updated>2014-08-20T17:05:03Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 5: Neutron replacement for Nova multi-host */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ '''Complete''']&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: &amp;lt;strike&amp;gt;juno-2&amp;lt;/strike&amp;gt; juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: '''Complete'''&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
Nova-network provides a networking mode called multi-host.  In this mode, every compute node serves as the network gateway for instances running locally.  This provides horizontal scalability and HA for the networking component.  Nova-network in its normal mode and Neutron historically only allow a single network node, which causes both scale and HA concerns.  Neutron must provide functionality such that its L3 agent is no longer a single point of failure or scaling bottleneck.&lt;br /&gt;
The Neutron team's answer to this is the DVR (distributed virtual router) project.&lt;br /&gt;
&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Status: '''Complete'''&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/neutron/+spec/neutron-ovs-dvr&lt;br /&gt;
* Spec: http://git.openstack.org/cgit/openstack/neutron-specs/tree/specs/juno/neutron-ovs-dvr.rst&lt;br /&gt;
* Gerrit: https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z&lt;br /&gt;
NOTE: need to discuss the fact that this requires OVS.&lt;br /&gt;
link to ML thread:&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
To fully deprecate nova-network, a migration to neutron needs to be put in place so nova-network users can successfully migrate from nova-network to neutron.  From the TC perspective, the requirement is:&lt;br /&gt;
  &lt;br /&gt;
  In the case that a project has intentionally duplicated functionality of&lt;br /&gt;
  another project, or portion of a project, the new project must reach a level&lt;br /&gt;
  of functionality and maturity such that we are ready to deprecate the old&lt;br /&gt;
  code and remove it after a well defined deprecation cycle.  The deprecation&lt;br /&gt;
  plan agreed to by the PTLs of each affected project, including details for&lt;br /&gt;
  how users will be able to migrate from the old to the new, must be submitted&lt;br /&gt;
  to the TC for review as a part of the graduation review.&lt;br /&gt;
&lt;br /&gt;
So, the primary requirements are:&lt;br /&gt;
* Nova must be willing to deprecate nova-network.&lt;br /&gt;
* The Neutron and Nova teams should work together to build a migration plan that both projects agree on.&lt;br /&gt;
&lt;br /&gt;
This gap is focused on #2.  The TC will review and officially bless the plan once it's deemed ready by both projects.&lt;br /&gt;
The most recent discussion about the migration plan can be found here: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041931.html&lt;br /&gt;
&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
* Blueprint: https://blueprints.launchpad.net/nova/+spec/neutron-migration&lt;br /&gt;
* Spec: https://review.openstack.org/#/c/101921/&lt;br /&gt;
* Gerrit: &lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
One of the major concerns with users of nova-network switching to Neutron is around the overall quality of the open source backends available for Neutron.  It is of critical importance that the community can be convinced that using neutron with an open source backend provides stability and scalability that is as good as using nova-network.&lt;br /&gt;
The first goal for this gap is to document the scale limitations of the various open source Neutron backends.  Additionally, there must be a plan for addressing known limitations that represent a parity gap with nova-network.&lt;br /&gt;
&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=60822</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=60822"/>
				<updated>2014-08-18T20:53:08Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 8-18-2014 (mestery)&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-3 is approaching fast&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-3&lt;br /&gt;
** Please submit your code for review sooner rather than later&lt;br /&gt;
* Deprecation: The Cisco monolithic plugin will no longer support the Cisco Nexus sub-plugin in Juno. The Nexus is now supported in ML2.&lt;br /&gt;
* Deprecation: The Mellanox monolithic plugin is being deprecated in Juno. The same functionality is supported by Mellanox ML2 Mechanism Driver.&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Team singing of &amp;quot;Kumbaya&amp;quot;&lt;br /&gt;
** http://en.wikipedia.org/wiki/Kumbaya&lt;br /&gt;
* Neutron CI Systems&lt;br /&gt;
** http://www.mail-archive.com/openstack-dev@lists.openstack.org/msg32385.html&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronThirdPartyTesting&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Ann and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing (complete)&lt;br /&gt;
** Full Tempest Job is voting (with service plugins disable for other projects)&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending completion of gap 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** complete&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
** Still in discussion on mailing.&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
** Note: (emagana) The docs team has decided to not document all available options for plugins/drivers even if they are open-sourced.&lt;br /&gt;
*** The only options documented will be the default ones (i.e. ML2 with OVS).&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-08-11)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Please see [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page].  Need people willing to grab code and test.&lt;br /&gt;
** Original patches are merged.&lt;br /&gt;
** Juno-3 timeframe will be used for [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-dvr-backlog&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on backlog work] and hardening.&lt;br /&gt;
** Working on getting experimental DVR test to pass all tempest tests.&lt;br /&gt;
&lt;br /&gt;
* rootwrap-daemon-mode&lt;br /&gt;
** Would like to know today if the -2 can be removed from the spec and code to attempt to make progress.  I still feel this is important for performance and has good return on investment potential.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** BP merged.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint merged.  Code in progress on [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z bp/bgp-dynamic-routing] gerrit topic&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
(no new updates this week)&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
* Flavors framework: https://review.openstack.org/102723 - still in review&lt;br /&gt;
* Approved blueprint specs for Juno&lt;br /&gt;
** Service Base and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
* Candidates for Kilo&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Tap As A Service: https://review.openstack.org/#/c/96149/&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/l Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/106299/&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(Work is in progress for the items below, no new updates)&lt;br /&gt;
* DVR/FWaaS Integration: https://review.openstack.org/113359&lt;br /&gt;
* Service Objects: Patches are in review&lt;br /&gt;
** Neutron patch: https://review.openstack.org/#/c/106274/&lt;br /&gt;
** Client patch: https://review.openstack.org/#/c/105873/&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Incubator&amp;diff=60225</id>
		<title>Network/Incubator</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Incubator&amp;diff=60225"/>
				<updated>2014-08-11T21:01:37Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* What is it? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Note - This is a proposal currently under discussion, not an adopted part of the Neutron development process.&lt;br /&gt;
&lt;br /&gt;
=== What is it? ===&lt;br /&gt;
The neutron-incubator is a proposed new git repo owned and managed by the Neutron core team to provide access to API    extensions during the development process.  The repo will facilitate rapid iteration while following OpenStack's review process, testing and community processes.&lt;br /&gt;
&lt;br /&gt;
=== Mission ===&lt;br /&gt;
To provide a well known location within the community for proposed Neutron API extensions to mature prior to adoption into the integrated release.&lt;br /&gt;
&lt;br /&gt;
=== Why a Seperate Repo? ===&lt;br /&gt;
Integrated releases are expected to be stable and the team is required to provide support for more than a year.  These requirements place lots of pressure on the core team as the API must be absolutely perfect due to releases only occurring twice per year.  Starting with the Grizzly cycle, the team has tried a variety of different workflows to improve quality of development and reduce the long-term technical debt.  These workflows actually increased the burden on both the proposers and the core team by requiring a long series of fully functional patches.  A separate repo will allow the extensions to mature in a reasonable manner for both the developers and reviewers.&lt;br /&gt;
&lt;br /&gt;
=== Release Process ===&lt;br /&gt;
The neutron-incubator project will not participate in the integrated release process.&lt;br /&gt;
Releases will occur as features or significant changes merge.  The released '''Alpha''' library will be published to PyPI for easy operator consumption.  OpenStack Infra provides the tooling to make it easy to publish new updates.&lt;br /&gt;
The ability to tag/release will provide the incubator a way to release new versions of APIs in development.&lt;br /&gt;
&lt;br /&gt;
=== Repository Guidelines ===&lt;br /&gt;
* Repository will be a collection of API Extensions that can be installed as a companion library for testing.&lt;br /&gt;
* APIs accepted for incubation should have targeted graduation within 2 cycles.  (Note: If a feature needs longer, the feature is too immature to qualify for the incubator and should iterate in StackForge before reapplying later.)&lt;br /&gt;
* Extensions will loaded as any other Neutron Extension.&lt;br /&gt;
* The Incubator will initially follow the OpenStack rules of two +2s by cores before merging.  This requirement is to ensure that a graduation reviews are not the first time the core team has examined the code.&lt;br /&gt;
* All proposed changes must pass the same HACKING rules as the main server project.&lt;br /&gt;
* All changes must pass Unit Test&lt;br /&gt;
* All changes must pass Functional Test&lt;br /&gt;
* All changes must not break Neutron's functional and unit testing&lt;br /&gt;
* All changes must not break Neutron's tempest testing&lt;br /&gt;
* A sub team may request the PTL or other designate publish an updated alpha library to the PyPI after key features merge to assist with testing and feedback.&lt;br /&gt;
* Features inside of Neutron project may not depend on incubation code&lt;br /&gt;
* API changes do not require a working implementation to merge.  (NOTE: Implementation must work to graduate)&lt;br /&gt;
* Should be compatible with N and N-1 release (enabling operators to test against stable release)&lt;br /&gt;
* Any database migrations should be kept in a separate timeline and care should be taken to avoid breaking stable N to stable N+1 upgrades&lt;br /&gt;
&lt;br /&gt;
===Proposal for Inclusion===&lt;br /&gt;
A sub-team within the Networking program may propose a new extension via the openstack-dev mailing list, at the weekly Neutron team meeting, or at a design summit session.  If the core team feels that the proposed extension fits within the Networking programs mission, the API extension will be added to the neutron-incubator repository.&lt;br /&gt;
===Periodic Review===&lt;br /&gt;
All extensions in the incubator shall be reviewed periodically to measure and provide feedback on progress.&lt;br /&gt;
===Exiting Incubation===&lt;br /&gt;
An API extension or developing feature may exit the incubator by graduating, spinning out or being abandoned.&lt;br /&gt;
====Graduation====&lt;br /&gt;
An extension will be eligible for graduation when the following requirements are met:&lt;br /&gt;
* Fits within the [http://git.openstack.org/cgit/openstack/governance/tree/reference/programs.yaml#n70 scope of Networking Program]&lt;br /&gt;
* Mature API definition with no major planned backward incompatible changes&lt;br /&gt;
* API is consistent with the current stable API&lt;br /&gt;
* Open Source Reference Implementation&lt;br /&gt;
* Implementation consistent with Neutron architecture&lt;br /&gt;
* Full Unit Test Coverage&lt;br /&gt;
* Full Functional Test Coverage&lt;br /&gt;
* Developer Documentaton&lt;br /&gt;
* Supporting tests/docs ready for immediate proposal: (Note: link to commits in private trees is acceptable)&lt;br /&gt;
** Set of Tempest Tests (QA)&lt;br /&gt;
** API Documentation (Docs)&lt;br /&gt;
** User Documentation (Docs)&lt;br /&gt;
** Proposed CLI support (python-neutronclient)&lt;br /&gt;
** Horizon UI Support&lt;br /&gt;
** OpenStack SDK Support&lt;br /&gt;
* Proposed specs for concurrent merge work:&lt;br /&gt;
** Spec or documentation for how to deploy at scale with Open Source components.&lt;br /&gt;
**Spec for database migration work&lt;br /&gt;
* Must demonstrate one or both of the following:&lt;br /&gt;
In-tree scalable option ''and/or'' Multi-vendor support (driver or via compatibility layer).  Note: Scalable OpenSource implementation option required.&lt;br /&gt;
* Stable third-party CI's in place for vendor drivers.&lt;br /&gt;
* If the API replaces another extension, a migration plan must be detailed and testable via Grenade test.&lt;br /&gt;
&lt;br /&gt;
=====How to Graduate=====&lt;br /&gt;
A sub-team will send a request to the openstack-dev mailing list.  The PTL will then schedule a discussion at a future weekly meeting for discussion.  The discussion will seek to verify that the requirements have been met.&lt;br /&gt;
&lt;br /&gt;
====Spin Out====&lt;br /&gt;
The Neutron team may elect to spin out an extension into a separate project (ie git repo, bug tracking, etc).  Spin outs can occur when:&lt;br /&gt;
* The extension requires management by a dedicated core team with specific domain knowledge.  &lt;br /&gt;
** The extension should be optional for deployers.&lt;br /&gt;
** The Networking Program may request that the TC allow the project to belong to the integrated release or to a new project outside the integrated release.&lt;br /&gt;
* Extension develops in a direction that does not fit within the scope of the Networking Program. (spun out to StackForge)&lt;br /&gt;
====Abandonment====&lt;br /&gt;
The core team may remove any incubated components in the event an API fails to gain traction, the developer support diminishes or at the request of the responsible subteam.  The process will be initiated by proposing the code removal in gerrit and sending notice to the openstack-dev mailing list.  The review shall not be approved until after 7 days to enable the core team time to consider the request and raise any concerns.&lt;br /&gt;
&lt;br /&gt;
===Core Team===&lt;br /&gt;
The current core team for Neutron will initially be core team for the incubator.  In the future, the team may decide to add incubator only cores if the need arises.&lt;br /&gt;
===Impact on Neutron===&lt;br /&gt;
An additional CI job will be added to Neutron to ensure that incubation code is not broken by changes to main server project.&lt;br /&gt;
&lt;br /&gt;
===Juno/Kilo Incubation Candidates===&lt;br /&gt;
*LBaaS v2&lt;br /&gt;
*Group Based Policy&lt;br /&gt;
*BGP Dynamic Routing&lt;br /&gt;
*VPNaaS (SSLVPN)&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=60224</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=60224"/>
				<updated>2014-08-11T21:00:09Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-3 is approaching fast&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-3&lt;br /&gt;
** Please submit your code for review sooner rather than later&lt;br /&gt;
* Neutron Policies are documented here:&lt;br /&gt;
** https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
* Ryu plugin is being deprecated&lt;br /&gt;
** Ryu team wants to concentrate its resource to ofagent.&lt;br /&gt;
** Juno will be the last release to support Ryu plugin.&lt;br /&gt;
** Currently no upgrade path is provided.&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Can we rotate between different time slots for the weekly irc meeting?&lt;br /&gt;
** The current time is too NA-centric&lt;br /&gt;
* GBP: How can following all the neutron rules lead us to it's current state?&lt;br /&gt;
** How did we get here?&lt;br /&gt;
** Where did the process fail?&lt;br /&gt;
** How can we not get here again?&lt;br /&gt;
* Contrail Plugin review&lt;br /&gt;
** https://review.openstack.org/#/c/96630/&lt;br /&gt;
* Sub-team culling&lt;br /&gt;
** We have too many sub teams.&lt;br /&gt;
** We need to determine a better life cycle management for sub-teams.&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Ann and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending completion of gap 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** complete&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
** Still in discussion on mailing.&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
** Note: (emagana) The docs team has decided to not document all available options for plugins/drivers even if they are open-sourced.&lt;br /&gt;
*** The only options documented will be the default ones (i.e. ML2 with OVS).&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-08-11)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;field.importance%3Alist=UNKNOWN&amp;amp;field.importance%3Alist=UNDECIDED&amp;amp;field.importance%3Alist=CRITICAL&amp;amp;field.importance%3Alist=HIGH&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-ipam-dhcp+&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on Bugs marked with at least High importance]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Please see [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page].  Need people willing to grab code and test.&lt;br /&gt;
** Original patches are merged.&lt;br /&gt;
** Juno-3 timeframe will be used for [https://bugs.launchpad.net/neutron/+bugs?field.searchtext=&amp;amp;orderby=-importance&amp;amp;search=Search&amp;amp;field.status%3Alist=NEW&amp;amp;field.status%3Alist=CONFIRMED&amp;amp;field.status%3Alist=TRIAGED&amp;amp;field.status%3Alist=INPROGRESS&amp;amp;field.status%3Alist=INCOMPLETE_WITH_RESPONSE&amp;amp;field.status%3Alist=INCOMPLETE_WITHOUT_RESPONSE&amp;amp;assignee_option=any&amp;amp;field.assignee=&amp;amp;field.bug_reporter=&amp;amp;field.bug_commenter=&amp;amp;field.subscriber=&amp;amp;field.structural_subscriber=&amp;amp;field.tag=l3-dvr-backlog&amp;amp;field.tags_combinator=ANY&amp;amp;field.has_cve.used=&amp;amp;field.omit_dupes.used=&amp;amp;field.omit_dupes=on&amp;amp;field.affects_me.used=&amp;amp;field.has_patch.used=&amp;amp;field.has_branches.used=&amp;amp;field.has_branches=on&amp;amp;field.has_no_branches.used=&amp;amp;field.has_no_branches=on&amp;amp;field.has_blueprints.used=&amp;amp;field.has_blueprints=on&amp;amp;field.has_no_blueprints.used=&amp;amp;field.has_no_blueprints=on backlog work] and hardening.&lt;br /&gt;
** Working on getting experimental DVR test to pass all tempest tests.&lt;br /&gt;
&lt;br /&gt;
* rootwrap-daemon-mode&lt;br /&gt;
** Would like to know today if the -2 can be removed from the spec and code to attempt to make progress.  I still feel this is important for performance and has good return on investment potential.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** BP merged.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint merged.  Code in progress on [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z bp/bgp-dynamic-routing] gerrit topic&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
(no new updates this week)&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
* Flavors framework: https://review.openstack.org/102723 - still in review&lt;br /&gt;
* Approved blueprint specs for Juno&lt;br /&gt;
** Service Base and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
* Candidates for Kilo&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Tap As A Service: https://review.openstack.org/#/c/96149/&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/l Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/106299/&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Unblocking development&lt;br /&gt;
** Pending -2: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041856.html&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-August/041863.html Proposal to move development to StackForge]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
** First patch series is functional with the &amp;quot;data plane&amp;quot; patches&lt;br /&gt;
** Tempest tests also added: https://review.openstack.org/#/c/108234&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
(Work is progress for the items below, no new updates)&lt;br /&gt;
* Service Objects: Patches are in review&lt;br /&gt;
** Neutron patch: https://review.openstack.org/#/c/106274/&lt;br /&gt;
** Client patch: https://review.openstack.org/#/c/105873/&lt;br /&gt;
* DVR/FWaaS Integration: Team is in the process of getting a working DVR installation going to start implementing the patch&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-horizon-juno&lt;br /&gt;
** This etherpad summarizes Horizon works related to Neutron (it mainly focuses on community related works)&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Incubator&amp;diff=60199</id>
		<title>Network/Incubator</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Incubator&amp;diff=60199"/>
				<updated>2014-08-11T18:43:47Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: Neutron API Incubator&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== What is it? ===&lt;br /&gt;
The neutron-incubator is a new git repo owned and managed by the Neutron core team to provide access to API    extensions during the development process.  The repo will facilitate rapid iteration while following OpenStack's review process, testing and community processes.&lt;br /&gt;
&lt;br /&gt;
=== Mission ===&lt;br /&gt;
To provide a well known location within the community for proposed Neutron API extensions to mature prior to adoption into the integrated release.&lt;br /&gt;
&lt;br /&gt;
=== Why a Seperate Repo? ===&lt;br /&gt;
Integrated releases are expected to be stable and the team is required to provide support for more than a year.  This burden places lots of pressure to on the core team as the API must be absolutely perfect since releases only occur twice per year.  Starting with the Grizzly cycle, the team has tried a variety of different workflows to improve quality of development and reduce the long term technical debt.  The cost of these workflows actually increase the burden on both the proposers and the core team by requiring a long series of fully functional patches.  The separate repo will allow the extensions to mature in a reasonable manner for both the developers and reviewers.&lt;br /&gt;
&lt;br /&gt;
=== Release Process ===&lt;br /&gt;
The neutron-incubator project will not participate in the integrated release process.&lt;br /&gt;
Releases will occur as features or significant changes merge.  The released '''Alpha''' library will be published to PyPI for easy operator consumption.  OpenStack Infra provides the tooling to make it easy to publish new updates.&lt;br /&gt;
The ability to tag/release will provide the incubator a way to release new versions of APIs in development.&lt;br /&gt;
&lt;br /&gt;
=== Repository Guidelines ===&lt;br /&gt;
* Repository will be a collection of API Extensions that can be installed as a companion library for testing.&lt;br /&gt;
* APIs accepted for incubation should have targeted graduation within 2 cycles.  (Note: If a feature needs longer, the feature is too immature to qualify for the incubator and should iterate in StackForge before reapplying later.)&lt;br /&gt;
* Extensions will loaded as any other Neutron Extension.&lt;br /&gt;
* The Incubator will initial follows the OpenStack rules of two +2s by cores before merging.  This requirement is to ensure that a graduation reviews are not the first time the core team has examined the code.&lt;br /&gt;
* All proposed changes must pass the same HACKING rules as the main server project.&lt;br /&gt;
* All changes must pass Unit Test&lt;br /&gt;
* All changes must pass Functional Test&lt;br /&gt;
* All changes must not break Neutron's functional and unit testing&lt;br /&gt;
* All changes must not break Neutron's tempest testing&lt;br /&gt;
* A sub team may request the PTL or other designate publish an updated alpha library to the PyPI after key features merge to assist with testing and feedback.&lt;br /&gt;
* Features inside of Neutron project may not depend on incubation code&lt;br /&gt;
* API changes do not require a working implementation to merge.  (NOTE: Implementation must work to graduate)&lt;br /&gt;
* Should be compatible with N and N-1 release (enabling operators to test against stable release)&lt;br /&gt;
*Any database migrations are kept in seperate timeline and care is taken to avoid breaking stable N to stable N+1 upgrades&lt;br /&gt;
===Proposal for Inclusion===&lt;br /&gt;
A sub-team within the Networking program may propose a new extension via the openstack-dev mailing list, at the weekly Neutron team meeting, or at a design summit session.  If the core team feels that the proposed extension fits within the Networking programs mission, the API extension will be added to the neutron-incubator repository.&lt;br /&gt;
===Periodic Review===&lt;br /&gt;
All extensions in the incubator shall be reviewed periodically to measure and provide feedback on progress.&lt;br /&gt;
===Exiting Incubation===&lt;br /&gt;
An API extension or developing feature may exit the incubator by graduating, spinning out or being abandoned.&lt;br /&gt;
====Graduation====&lt;br /&gt;
An extension will be eligible for graduation when the following requirements are met:&lt;br /&gt;
* Fits within the [http://git.openstack.org/cgit/openstack/governance/tree/reference/programs.yaml#n70 scope of Networking Program]&lt;br /&gt;
* Mature API definition with no major planned backward incompatible changes&lt;br /&gt;
* API is consistent with the current stable API&lt;br /&gt;
* Open Source Reference Implementation&lt;br /&gt;
* Implementation consistent with Neutron architecture&lt;br /&gt;
* Full Unit Test Coverage&lt;br /&gt;
* Full Functional Test Coverage&lt;br /&gt;
* Developer Documentaton&lt;br /&gt;
* Supporting tests/docs ready for immediate proposal: (Note: link to commits in private trees is acceptable)&lt;br /&gt;
** Set of Tempest Tests (QA)&lt;br /&gt;
** API Documentation (Docs)&lt;br /&gt;
** User Documentation (Docs)&lt;br /&gt;
** Proposed CLI support (python-neutronclient)&lt;br /&gt;
** Horizon UI Support&lt;br /&gt;
** OpenStack SDK Support&lt;br /&gt;
* Proposed specs for concurrent merge work:&lt;br /&gt;
** Spec or documentation for how to deploy at scale with Open Source components.&lt;br /&gt;
**Spec for database migration work&lt;br /&gt;
* Must demostrate one or both following:&lt;br /&gt;
Intree scalable option ''and/or'' Multi-vendor support (driver or via compatability layer).  Note: Scalable OpenSource implementation option required.&lt;br /&gt;
* Stable third-party CI's in place (For the open source version or the vendor versions?) 3rd party CI should only apply to drivers and plugins that are going to merge into master  This is a list of graduation requirements; stable CI for vendor drivers should be on that checklist.&lt;br /&gt;
* If the API replaces another extension, a migration plan must be detailed and testable via Grenade test.&lt;br /&gt;
&lt;br /&gt;
=====How to Graduate=====&lt;br /&gt;
A sub-team will send a request to the openstack-dev mailing list.  The PTL will then schedule a discussion at a future weekly meeting for discussion.  The dicussion will seek to verify that the requirements have been met.&lt;br /&gt;
&lt;br /&gt;
====Spin Out====&lt;br /&gt;
The Neutron team may elect to spin out an extension into a seperate project (ie git repo, bug tracking, etc).  Spin outs can occur when:&lt;br /&gt;
* The extension requires management by a dedicated core team with specific domain knowledge.  &lt;br /&gt;
** The extension should be optional for deployers.&lt;br /&gt;
** The Networking Program may request that the TC allow the project belong to the integrated release or a new project outside the integrated release.&lt;br /&gt;
* Extension develops in a direction that does not fit within the scope of the Networking Program. (spun out to StackForge)&lt;br /&gt;
====Abandonment====&lt;br /&gt;
The core team may remove any incubated components in the event an API fails to gain traction, the developer support diminshes or the subteam requests.  The process will be initiated by proposing the code removal in gerrit and sending notice to the openstack-dev mailing list.  The review shall not be approved until after 7 days to enable the core team time to consider the request and raise any concerns.&lt;br /&gt;
===Core Team===&lt;br /&gt;
The current core team for Neutron will initially be core team for the incubator.  In the future, the team may decide to add incubator only cores if the need arises.&lt;br /&gt;
===Impact on Neutron===&lt;br /&gt;
An additional test will be added to Neutron to ensure that incubation code is not broken by changes to main server project. &lt;br /&gt;
&lt;br /&gt;
===Juno/Kilo Incubation Candidates===&lt;br /&gt;
*LBaaS v2&lt;br /&gt;
*Group Based Policy&lt;br /&gt;
*BGP Dynamic Routing&lt;br /&gt;
*VPNaaS (SSLVPN)&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=59684</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=59684"/>
				<updated>2014-08-04T21:32:47Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Group Policy (SumitNaiksatam) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-3 is fast approaching&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-3&lt;br /&gt;
** Please submit your code for review sooner rather than later&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Linuxbridge and OVS plugins will be removed from the tree this week or next&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Ann and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed now that Gap 0 has closed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending Gaps 0 and 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** (carl_baldwin tracking as part of DVR work)&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
** Note: (emagana) The docs team has decided to not document all available options for plugins/drivers even if they are open-sourced.&lt;br /&gt;
*** The only options documented will be the default ones (i.e. ML2 with OVS).&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-08-04)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* Will be following up on the following bugs newly tagged with l3-ipam-dhcp&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1334926 floatingip still working once connected even after it is disociated] was brought on the ML.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Please see [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page].  Need people willing to grab code and test.&lt;br /&gt;
** Original patches are merged.&lt;br /&gt;
** Juno-3 timeframe will be used for [https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-dvr-backlog backlog work] and hardening.&lt;br /&gt;
** Working on getting experimental DVR test to pass all tempest tests.  I believe we're getting close.&lt;br /&gt;
&lt;br /&gt;
* rootwrap-daemon-mode&lt;br /&gt;
** Would like to know today if the -2 can be removed from the spec and code to attempt to make progress.  I still feel this is important for performance and has good return on investment potential.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** BP merged.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint merged.  Code in progress on [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z bp/bgp-dynamic-routing] gerrit topic&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint missed deadline.  I have concerns about getting this implemented in time for Juno anyway.  Will push out to Kilo.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
** Deferred until early Kilo.&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Deferred until Kilo.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
(no new updates this week)&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
* Flavors framework: https://review.openstack.org/102723 - still in review&lt;br /&gt;
* Approved blueprint specs for Juno&lt;br /&gt;
** Service Base and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
* Candidates for Kilo&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Tap As A Service: https://review.openstack.org/#/c/96149/&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/l Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/106299/&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Unblocking development&lt;br /&gt;
** Pending -2: http://lists.openstack.org/pipermail/openstack-dev/2014-August/041856.html&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-August/041863.html Proposal to move development to StackForge]&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy/Patches Group Policy Patches in review]&lt;br /&gt;
** First patch series is functional with the &amp;quot;data plane&amp;quot; patches&lt;br /&gt;
** Tempest tests also added: https://review.openstack.org/#/c/108234&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
* Service Objects: Patches are in review&lt;br /&gt;
** Neutron patch: https://review.openstack.org/#/c/106274/&lt;br /&gt;
** Client patch: https://review.openstack.org/#/c/105873/&lt;br /&gt;
* DVR/FWaaS Integration: Team is in the process of getting a working DVR installation going to start implementing the patch&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Horizon ===&lt;br /&gt;
Just FYI.&lt;br /&gt;
&lt;br /&gt;
The following is a list of works related to Neutron community-tracked features.&lt;br /&gt;
&lt;br /&gt;
* Support assignment for network to DHCP agent https://review.openstack.org/#/c/62625/ -- Close to merge&lt;br /&gt;
* Support provider network extension https://review.openstack.org/#/c/74066/ -- Close to merge&lt;br /&gt;
* IPv6 attributes support https://review.openstack.org/#/c/74453/ -- Needs to resume the work. Covered by IPv6 subteam meeting. I already requested to the author.&lt;br /&gt;
* DVR support https://blueprints.launchpad.net/horizon/+spec/enhance-horizon-for-dvr -- The author started the work. Covered by DVR meeting. Will follow and support the author.&lt;br /&gt;
* L3-HA support? -- I can add support of the feature. It depends on the progress of the neutron side. If it is merged in Juno, I will work on it.&lt;br /&gt;
&lt;br /&gt;
Feature parity across projects:&lt;br /&gt;
* Read-only API for default quotas https://bugs.launchpad.net/neutron/+bug/1204956 -- It is a kind of nova-parity. It may need a spec review.&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58586</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58586"/>
				<updated>2014-07-21T21:08:23Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 0: DB Migrations in Neutron */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ '''Complete''']&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: Complete&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
The DVR project will add the functionality to replace this.&lt;br /&gt;
We are highlighting this work now.&lt;br /&gt;
We have Summit sessions proposed for this as well to discuss with the broader team.&lt;br /&gt;
Early DVR work will land in Juno-1.&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-1 ?&lt;br /&gt;
* NOTE: need to discuss the fact that this requires OVS with Nova.  I'm not sure that Nova will be willing to deprecate/remove nova-network in that case.&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
This work is currently being scoped.&lt;br /&gt;
A summit session around this has been approved.&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
Work is planned to begin for this soon.&lt;br /&gt;
Scale testing and documentation is also under discussion now.&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58585</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58585"/>
				<updated>2014-07-21T21:06:29Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 4: Missing API calls */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ Complete]&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
* Status: Complete&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
The DVR project will add the functionality to replace this.&lt;br /&gt;
We are highlighting this work now.&lt;br /&gt;
We have Summit sessions proposed for this as well to discuss with the broader team.&lt;br /&gt;
Early DVR work will land in Juno-1.&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-1 ?&lt;br /&gt;
* NOTE: need to discuss the fact that this requires OVS with Nova.  I'm not sure that Nova will be willing to deprecate/remove nova-network in that case.&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
This work is currently being scoped.&lt;br /&gt;
A summit session around this has been approved.&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
Work is planned to begin for this soon.&lt;br /&gt;
Scale testing and documentation is also under discussion now.&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58584</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58584"/>
				<updated>2014-07-21T21:04:07Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 2: Grenade Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ Complete]&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Initially will include only Icehouse Neutron -&amp;gt; Juno Neutron.  Later version will test Nova to Neutron path.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
The DVR project will add the functionality to replace this.&lt;br /&gt;
We are highlighting this work now.&lt;br /&gt;
We have Summit sessions proposed for this as well to discuss with the broader team.&lt;br /&gt;
Early DVR work will land in Juno-1.&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-1 ?&lt;br /&gt;
* NOTE: need to discuss the fact that this requires OVS with Nova.  I'm not sure that Nova will be willing to deprecate/remove nova-network in that case.&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
This work is currently being scoped.&lt;br /&gt;
A summit session around this has been approved.&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
Work is planned to begin for this soon.&lt;br /&gt;
Scale testing and documentation is also under discussion now.&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58583</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58583"/>
				<updated>2014-07-21T21:02:53Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 1: Tempest Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ Complete]&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
* Status: As of Juno-2 all identified tests have merged.&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2 ?&lt;br /&gt;
* NOTE: should include icehouse neutron -&amp;gt; juno neutron AND icehouse nova-net -&amp;gt; juno neutron (need to determine the test matrix for icehouse nova-net -&amp;gt; juno neutron (testing a single configuration is acceptable for now.  we are only testing nova-network FlatDHCP today anyway))&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
The DVR project will add the functionality to replace this.&lt;br /&gt;
We are highlighting this work now.&lt;br /&gt;
We have Summit sessions proposed for this as well to discuss with the broader team.&lt;br /&gt;
Early DVR work will land in Juno-1.&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-1 ?&lt;br /&gt;
* NOTE: need to discuss the fact that this requires OVS with Nova.  I'm not sure that Nova will be willing to deprecate/remove nova-network in that case.&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
This work is currently being scoped.&lt;br /&gt;
A summit session around this has been approved.&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
Work is planned to begin for this soon.&lt;br /&gt;
Scale testing and documentation is also under discussion now.&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58581</id>
		<title>Meetings/TechnicalCommittee/Neutron Gap Coverage</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Meetings/TechnicalCommittee/Neutron_Gap_Coverage&amp;diff=58581"/>
				<updated>2014-07-21T20:57:52Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Gap 0: DB Migrations in Neutron */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the action plan to address neutron and nova-network parity gaps identified [https://etherpad.openstack.org/p/neutron-nova-parity here].&lt;br /&gt;
&lt;br /&gt;
=== Gap 0: DB Migrations in Neutron ===&lt;br /&gt;
Currently in neutron the db migrations include code that checks for features enabled at the time of migrations. This can put &lt;br /&gt;
deployers in a bind when they attempt to turn on a neutron feature in the future, because the database migrations needed have&lt;br /&gt;
been skipped. Bug: https://bugs.launchpad.net/neutron/+bug/1307344 explains in more detail.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
* Status: [https://review.openstack.org/#/c/96438/ Complete]&lt;br /&gt;
&lt;br /&gt;
=== Gap 1: Tempest Testing ===&lt;br /&gt;
The list of Tempest tests which close this gap are [https://etherpad.openstack.org/p/neutron-nova-parity here]. These are being worked now. We're very close with most of these, we expect these to all close during Juno.&lt;br /&gt;
The team is also actively triaging any new issues.&lt;br /&gt;
We also have a Summit session around spreading the load for triaging gate issues and involving more Neutron team members in this area.&lt;br /&gt;
One other area we're actively working on is functional testing. This is being driven by marun, and we expect in Juno to expand Neutron functional testing quite a bit. We have a Summit session on this as well.&lt;br /&gt;
* Owner: mlavalle&lt;br /&gt;
* Milestone: continuous work, closure at juno-3&lt;br /&gt;
&lt;br /&gt;
=== Gap 2: Grenade Testing ===&lt;br /&gt;
Issues with current bugs being worked. Biggest issue right now: https://bugs.launchpad.net/neutron/+bug/1307344&lt;br /&gt;
We are actively working to solve the DB migration issues around service plugins which are the root of this issue.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-2 ?&lt;br /&gt;
* NOTE: should include icehouse neutron -&amp;gt; juno neutron AND icehouse nova-net -&amp;gt; juno neutron (need to determine the test matrix for icehouse nova-net -&amp;gt; juno neutron (testing a single configuration is acceptable for now.  we are only testing nova-network FlatDHCP today anyway))&lt;br /&gt;
&lt;br /&gt;
=== Gap 3: Neutron as the default in devstack ===&lt;br /&gt;
A patch exists for this now. Waiting on grenade being enabled to propose this patch to gerrit.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Tracked by this bug: https://bugs.launchpad.net/devstack/+bug/1321003&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 4: Missing API calls ===&lt;br /&gt;
This is being worked at the moment.&lt;br /&gt;
Discussions have ensued on the bugs referenced at [1] around whether or not these APIs are needed. We will close on these in Juno.&lt;br /&gt;
* Owner: markmcclain&lt;br /&gt;
* Milestone: juno-1&lt;br /&gt;
&lt;br /&gt;
=== Gap 5: Neutron replacement for Nova multi-host ===&lt;br /&gt;
The DVR project will add the functionality to replace this.&lt;br /&gt;
We are highlighting this work now.&lt;br /&gt;
We have Summit sessions proposed for this as well to discuss with the broader team.&lt;br /&gt;
Early DVR work will land in Juno-1.&lt;br /&gt;
* Owner: carl_baldwin&lt;br /&gt;
* Milestone: juno-1 ?&lt;br /&gt;
* NOTE: need to discuss the fact that this requires OVS with Nova.  I'm not sure that Nova will be willing to deprecate/remove nova-network in that case.&lt;br /&gt;
&lt;br /&gt;
=== Gap 6: nova-net to neutron migration ===&lt;br /&gt;
This work is currently being scoped.&lt;br /&gt;
A summit session around this has been approved.&lt;br /&gt;
* Owner: obondarev&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Gap 7: Document Open Source Options ===&lt;br /&gt;
Work is planned to begin for this soon.&lt;br /&gt;
Scale testing and documentation is also under discussion now.&lt;br /&gt;
* Owner: mestery&lt;br /&gt;
* Milestone: juno-2&lt;br /&gt;
&lt;br /&gt;
=== Additional actions ===&lt;br /&gt;
&lt;br /&gt;
==== Design Summit Sessions Focused on Parity ====&lt;br /&gt;
The following sessions are all focused on the parity session and will be held in Atlanta:&lt;br /&gt;
* nova-network parity: This will include a focus on the DVR work and on scale testing.&lt;br /&gt;
* nova-network to neutron migration: A session solely focused on migrating from nova-network to neutron&lt;br /&gt;
* neutron QA and testing: This session will cover Tempest and functional testing&lt;br /&gt;
* neutron performance: This session will cover neutron performance issues&lt;br /&gt;
* QA will have a grenade session where Neutron folks should show up (will try schedule outside of neutron slots)&lt;br /&gt;
&lt;br /&gt;
==== Mid-Cycle Meetup ====&lt;br /&gt;
In addition to all of the above, we are also going to host a mid-cycle meeting focused solely on nova-network parity. This will likely be July 9-11 in Minnesota, and we hope to close as many gaps as possible during this time (in time for the juno-2 milestone)&lt;br /&gt;
* Etherpad: https://etherpad.openstack.org/p/neutron-msp-sprint&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=58580</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=58580"/>
				<updated>2014-07-21T20:57:13Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* SAD is fast approaching&lt;br /&gt;
** The process of deferring work to &amp;quot;K&amp;quot; has begun.&lt;br /&gt;
** We are heavily loaded for Juno-2 and Juno-3.&lt;br /&gt;
* Third Party meeting update&lt;br /&gt;
** http://eavesdrop.openstack.org/meetings/third_party/2014/third_party.2014-07-14-18.00.log.html&lt;br /&gt;
** Went over status of CI systems with issues&lt;br /&gt;
** Those which are not fixed (or have fixes in progress) will likely be removed during Juno-3.&lt;br /&gt;
* The Open vSwitch and Linuxbridge plugins will be removed right after Juno-2 is cut.&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Juno-2&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-2&lt;br /&gt;
** Focus on what we can merge out of the remaining items here&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Ann and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed now that Gap 0 has closed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending Gaps 0 and 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** (carl_baldwin tracking as part of DVR work)&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-07-14)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* Will be following up on the following bugs newly tagged with l3-ipam-dhcp&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1334926 floatingip still working once connected even after it is disociated] was brought on the ML.&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1230323 Race condition with multiple neutron-servers can allow a router to be scheduled twice].&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1337698 q-dhcp agent fails to start on Ubuntu 12.04]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** All Jenkins tests have been passing&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
** Conversion from legacy router to distributed router not implemented yet.  Will follow on with a new patch.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Let's get this bp merged!  See the gerrit topic for the spec patch.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint updated, needs review on the [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z gerrit topic].&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
(No new update this week, still stuck in spec review)&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070 and https://review.openstack.org/102723&lt;br /&gt;
** Some more ongoing discussion on service profiles and exposing of extensions in the Flavor, hoping for a conclusion by this week: http://lists.openstack.org/pipermail/openstack-dev/2014-July/039244.html&lt;br /&gt;
** Tags will be introduced in the second iteration of the Flavor user facing API&lt;br /&gt;
* The focus of the team is now on reviewing the blueprint specs:&lt;br /&gt;
** Service Base and insertion new simplified patch set uploaded: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
** Tap As A Service: https://review.openstack.org/#/c/96149/&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
(No new update this week, still stuck in review on the first series)&lt;br /&gt;
&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
**** GP-DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
**** GP-PLG-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** GP to Neutron Resource Mapping&lt;br /&gt;
**** GPM-API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
**** GPM-DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
**** GPM-PLG-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
** GP Neutron Mapping Drivers&lt;br /&gt;
**** GPM-IPD-1: https://review.openstack.org/#/c/104727/&lt;br /&gt;
**** GPM-RMD-1: https://review.openstack.org/#/c/105272/&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-2: https://review.openstack.org/#/c/101816&lt;br /&gt;
**** GP-DB-2: https://review.openstack.org/#/c/103456/&lt;br /&gt;
**** GP-PLG-2: https://review.openstack.org/#/c/103465/&lt;br /&gt;
** Contracts&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-3: https://review.openstack.org/#/c/103486/&lt;br /&gt;
**** GP-DB-3: https://review.openstack.org/#/c/103755/&lt;br /&gt;
**** GP-PLG-3: https://review.openstack.org/#/c/103798/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration blueprint has been posted: https://review.openstack.org/#/c/106225&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=58579</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=58579"/>
				<updated>2014-07-21T20:52:54Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* SAD is fast approaching&lt;br /&gt;
** The process of deferring work to &amp;quot;K&amp;quot; has begun.&lt;br /&gt;
** We are heavily loaded for Juno-2 and Juno-3.&lt;br /&gt;
* Third Party meeting update&lt;br /&gt;
** http://eavesdrop.openstack.org/meetings/third_party/2014/third_party.2014-07-14-18.00.log.html&lt;br /&gt;
** Went over status of CI systems with issues&lt;br /&gt;
** Those which are not fixed (or have fixes in progress) will likely be removed during Juno-3.&lt;br /&gt;
* The Open vSwitch and Linuxbridge plugins will be removed right after Juno-2 is cut.&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** Merged [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Juno-2&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-2&lt;br /&gt;
** Focus on what we can merge out of the remaining items here&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations (complete):&lt;br /&gt;
Thanks to salv-orlando, HenryG, jlibsova, Anna and others for working on this.&lt;br /&gt;
* Gap 1: Tempest Testing&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** Work resumed now that Gap 0 has closed.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending Gaps 0 and 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit complete.  Based on bug discussion no missed calls to add.&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** (carl_baldwin tracking as part of DVR work)&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
Open Items for Juno:&lt;br /&gt;
* https://etherpad.openstack.org/p/neutron-docs-juno&lt;br /&gt;
(Need more volunteers)&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
** (review notes from Ryan Moats during mid-cycle sprint):&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1336888 - this needs to be addressed by Cisco N1K documentation&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327700 - this appears to be addressed by the existing CLI help text added in the original patch&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1323894 - addressed with https://review.openstack.org/105841 (merged)&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321320 - addressed with https://review.openstack.org/#/c/106860&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1321037 - it is unclear to me where to document this - should we have specific ODL documentation?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1278281 - is there a patch for adding the &amp;quot;How to Perform an Upgrade from IceHouse to Juno&amp;quot; chapters to the ops guide?  if not, what is the strategy for adding these chapters?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1259811 - I wasn't able to find a grizzly branch within github, do we have one or is this going to require re-entering the necessary text?&lt;br /&gt;
***https://bugs.launchpad.net/openstack-manuals/+bug/1327489 - I was unable to find any reference to flows other than troubleshooting in the ops guide and this (imho) doesn't fit there&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/103498 Add provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
** https://review.openstack.org/#/c/104526 Add multi-provider extension positive test cases (Cedric Brandily)&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/28 and 7/7&lt;br /&gt;
*** https://review.openstack.org/#/c/83627 Miguel Lavalle ((VPNaaS API Tests Enhancements)&lt;br /&gt;
*** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
*** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
*** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-07-14)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* Will be following up on the following bugs newly tagged with l3-ipam-dhcp&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1334926 floatingip still working once connected even after it is disociated] was brought on the ML.&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1230323 Race condition with multiple neutron-servers can allow a router to be scheduled twice].&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1337698 q-dhcp agent fails to start on Ubuntu 12.04]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** All Jenkins tests have been passing&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
** Conversion from legacy router to distributed router not implemented yet.  Will follow on with a new patch.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Let's get this bp merged!  See the gerrit topic for the spec patch.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint updated, needs review on the [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z gerrit topic].&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
(No new update this week, still stuck in spec review)&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070 and https://review.openstack.org/102723&lt;br /&gt;
** Some more ongoing discussion on service profiles and exposing of extensions in the Flavor, hoping for a conclusion by this week: http://lists.openstack.org/pipermail/openstack-dev/2014-July/039244.html&lt;br /&gt;
** Tags will be introduced in the second iteration of the Flavor user facing API&lt;br /&gt;
* The focus of the team is now on reviewing the blueprint specs:&lt;br /&gt;
** Service Base and insertion new simplified patch set uploaded: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
** Tap As A Service: https://review.openstack.org/#/c/96149/&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
(No new update this week, still stuck in review on the first series)&lt;br /&gt;
&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
**** GP-DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
**** GP-PLG-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** GP to Neutron Resource Mapping&lt;br /&gt;
**** GPM-API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
**** GPM-DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
**** GPM-PLG-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
** GP Neutron Mapping Drivers&lt;br /&gt;
**** GPM-IPD-1: https://review.openstack.org/#/c/104727/&lt;br /&gt;
**** GPM-RMD-1: https://review.openstack.org/#/c/105272/&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-2: https://review.openstack.org/#/c/101816&lt;br /&gt;
**** GP-DB-2: https://review.openstack.org/#/c/103456/&lt;br /&gt;
**** GP-PLG-2: https://review.openstack.org/#/c/103465/&lt;br /&gt;
** Contracts&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-3: https://review.openstack.org/#/c/103486/&lt;br /&gt;
**** GP-DB-3: https://review.openstack.org/#/c/103755/&lt;br /&gt;
**** GP-PLG-3: https://review.openstack.org/#/c/103798/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* DVR/FWaaS Integration blueprint has been posted: https://review.openstack.org/#/c/106225&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=57046</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=57046"/>
				<updated>2014-06-30T20:56:59Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* nova-network parity sprint next week&lt;br /&gt;
** Collecting work items on this etherpad: https://etherpad.openstack.org/p/lOiqsLmizl&lt;br /&gt;
** Will have list of things for that next week&lt;br /&gt;
** Please come prepared to address bugs, docs, testing, etc.!&lt;br /&gt;
** It's critical we all are ready to roll on this at 9:00AM Wednesday morning!&lt;br /&gt;
** Please unicast [Name, Email address, Company name] to mestery so we can setup guest wifi access for you.&lt;br /&gt;
** We will start at 9AM each day (I may be there earlier for folks who want to arrive early), and go until 6PM.&lt;br /&gt;
** Will decide on places to eat dinner as a group Wednesday and Thursday night.&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Gap 0: DB Migrations:&lt;br /&gt;
** [https://review.openstack.org/95738 Healing Migration Design Spec]&lt;br /&gt;
*** Approved and moving to implementation phase&lt;br /&gt;
** [https://review.openstack.org/#/c/101963/ Removing Conditional Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
* Gap 1: Tempest Testing&lt;br /&gt;
** (mlavelle tracking this item)&lt;br /&gt;
* Gap 2: Grenade Testing&lt;br /&gt;
** On hold pending Gap 0 completion.&lt;br /&gt;
* Gap 3: Neutron as the default in devstack&lt;br /&gt;
** On hold pending Gaps 0 and 2&lt;br /&gt;
* Gap 4: Missing API calls&lt;br /&gt;
** Audit nearly complete&lt;br /&gt;
* Gap 5: Neutron replacement for Nova multi-host&lt;br /&gt;
** (carl_baldwin tracking as part of DVR work)&lt;br /&gt;
* Gap 6: nova-net to neutron migration&lt;br /&gt;
** obondarev has been super responsive to community feedback.  Please take a look!&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Gap 7: Document Open Source Options&lt;br /&gt;
** Planned for late Juno-2/3 no updates here.&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-30)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* Will be following up on the following bugs newly tagged with l3-ipam-dhcp&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1334926 floatingip still working once connected even after it is disociated] was brought on the ML.&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1230323 Race condition with multiple neutron-servers can allow a router to be scheduled twice].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** All Jenkins tests should be passing (still waiting on Jenkins to bless a handful of UT fixes)&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Let's get this bp merged!  See the gerrit topic for the spec patch.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint updated, needs review on the [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z gerrit topic].&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070 and https://review.openstack.org/102723&lt;br /&gt;
** We had an IRC meeting on last Friday to reconcile the two proposals and make progress (http://eavesdrop.openstack.org/meetings/networking_advanced_services/2014/networking_advanced_services.2014-06-27-17.30.log.html)&lt;br /&gt;
** Mark and Eugene are working together to first crystallize the user facing API (some agreement was reached during the meeting)&lt;br /&gt;
** Some more ongoing discussion on service profiles and exposing of extensions in the Flavor&lt;br /&gt;
** Tags will be introduced in the second iteration of the Flavor user facing API&lt;br /&gt;
* The focus of the team is now on reviewing the blueprint specs:&lt;br /&gt;
** Service Base and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
**** GP-DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
**** GP-PLG-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** GP to Neutron Resource Mapping&lt;br /&gt;
**** GPM-API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
**** GPM-DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
**** GPM-PLG-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-2: https://review.openstack.org/#/c/101816&lt;br /&gt;
**** GP-DB-2: https://review.openstack.org/#/c/103456/&lt;br /&gt;
**** GP-PLG-2: https://review.openstack.org/#/c/103465/&lt;br /&gt;
** Contracts&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-3: https://review.openstack.org/#/c/103486/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=57045</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=57045"/>
				<updated>2014-06-30T20:51:36Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* nova-network parity sprint next week&lt;br /&gt;
** Collecting work items on this etherpad: https://etherpad.openstack.org/p/lOiqsLmizl&lt;br /&gt;
** Will have list of things for that next week&lt;br /&gt;
** Please come prepared to address bugs, docs, testing, etc.!&lt;br /&gt;
** It's critical we all are ready to roll on this at 9:00AM Wednesday morning!&lt;br /&gt;
** Please unicast [Name, Email address, Company name] to mestery so we can setup guest wifi access for you.&lt;br /&gt;
** We will start at 9AM each day (I may be there earlier for folks who want to arrive early), and go until 6PM.&lt;br /&gt;
** Will decide on places to eat dinner as a group Wednesday and Thursday night.&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
** [https://review.openstack.org/95738 Healing Migration Design Spec]&lt;br /&gt;
*** Approved and moving to implementation phase&lt;br /&gt;
** [https://review.openstack.org/#/c/101963/ Removing Conditional Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-30)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* Will be following up on the following bugs newly tagged with l3-ipam-dhcp&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1334926 floatingip still working once connected even after it is disociated] was brought on the ML.&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1230323 Race condition with multiple neutron-servers can allow a router to be scheduled twice].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** All Jenkins tests should be passing (still waiting on Jenkins to bless a handful of UT fixes)&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Let's get this bp merged!  See the gerrit topic for the spec patch.&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint updated, needs review on the [https://review.openstack.org/#/q/topic:bp/bgp-dynamic-routing,n,z gerrit topic].&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070 and https://review.openstack.org/102723&lt;br /&gt;
** We had an IRC meeting on last Friday to reconcile the two proposals and make progress (http://eavesdrop.openstack.org/meetings/networking_advanced_services/2014/networking_advanced_services.2014-06-27-17.30.log.html)&lt;br /&gt;
** Mark and Eugene are working together to first crystallize the user facing API (some agreement was reached during the meeting)&lt;br /&gt;
** Some more ongoing discussion on service profiles and exposing of extensions in the Flavor&lt;br /&gt;
** Tags will be introduced in the second iteration of the Flavor user facing API&lt;br /&gt;
* The focus of the team is now on reviewing the blueprint specs:&lt;br /&gt;
** Service Base and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Traffic Steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/101433/ Use EUI64 for IPv6 SLAAC when subnet is specified] - needs core reviewers&lt;br /&gt;
* [https://review.openstack.org/#/c/80932/ Trigger provider security group update for RA]&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
**** GP-DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
**** GP-PLG-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** GP to Neutron Resource Mapping&lt;br /&gt;
**** GPM-API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
**** GPM-DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
**** GPM-PLG-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-2: https://review.openstack.org/#/c/101816&lt;br /&gt;
**** GP-DB-2: https://review.openstack.org/#/c/103456/&lt;br /&gt;
**** GP-PLG-2: https://review.openstack.org/#/c/103465/&lt;br /&gt;
** Contracts&lt;br /&gt;
*** Resource Model: API, DB, Plugin&lt;br /&gt;
**** GP-API-3: https://review.openstack.org/#/c/103486/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56542</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56542"/>
				<updated>2014-06-23T20:59:25Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-23 Edgar Magana (emagana) - Training&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
** [https://review.openstack.org/95738 Healing Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
** [https://review.openstack.org/#/c/101963/ Removing Conditional Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* A few new bugs of &amp;quot;High&amp;quot; importance.  All of them have owners but not all of them target a release.  Will follow up in this weeks meeting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Will be pushing to get tests passing on all of the patches.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070, all those who have an opinion please attend the IRC meeting this week, we would like to close on this or some part of this spec during this meeting&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
*** DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
*** Plugin-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** Neutron Mapping API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
*** Neutron Mapping DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
*** Neutron Mapping Plugin-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** API-2: https://review.openstack.org/#/c/101816/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* New python-neutronclient release requested&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-June/038389.html&lt;br /&gt;
* Flavor discussion with broader team&lt;br /&gt;
** Based on discussions at LBaaS sprint, flavor BP needs some tweaking.&lt;br /&gt;
** Would like to come to a conclusion to move forward with this one.&lt;br /&gt;
** https://review.openstack.org/#/c/90070/&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56541</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56541"/>
				<updated>2014-06-23T20:58:48Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-23 Edgar Magana (emagana) - Training&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
** [https://review.openstack.org/95738 Healing Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
** [https://review.openstack.org/#/c/101963/ Removing Conditional Migration Design Spec[&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* A few new bugs of &amp;quot;High&amp;quot; importance.  All of them have owners but not all of them target a release.  Will follow up in this weeks meeting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Will be pushing to get tests passing on all of the patches.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070, all those who have an opinion please attend the IRC meeting this week, we would like to close on this or some part of this spec during this meeting&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
*** DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
*** Plugin-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** Neutron Mapping API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
*** Neutron Mapping DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
*** Neutron Mapping Plugin-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** API-2: https://review.openstack.org/#/c/101816/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* New python-neutronclient release requested&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-June/038389.html&lt;br /&gt;
* Flavor discussion with broader team&lt;br /&gt;
** Based on discussions at LBaaS sprint, flavor BP needs some tweaking.&lt;br /&gt;
** Would like to come to a conclusion to move forward with this one.&lt;br /&gt;
** https://review.openstack.org/#/c/90070/&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56540</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56540"/>
				<updated>2014-06-23T20:57:57Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-23 Edgar Magana (emagana) - Training&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
** [https://review.openstack.org/95738 Removing Conditional Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* A few new bugs of &amp;quot;High&amp;quot; importance.  All of them have owners but not all of them target a release.  Will follow up in this weeks meeting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Will be pushing to get tests passing on all of the patches.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070, all those who have an opinion please attend the IRC meeting this week, we would like to close on this or some part of this spec during this meeting&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
*** DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
*** Plugin-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** Neutron Mapping API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
*** Neutron Mapping DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
*** Neutron Mapping Plugin-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** API-2: https://review.openstack.org/#/c/101816/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* New python-neutronclient release requested&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-June/038389.html&lt;br /&gt;
* Flavor discussion with broader team&lt;br /&gt;
** Based on discussions at LBaaS sprint, flavor BP needs some tweaking.&lt;br /&gt;
** Would like to come to a conclusion to move forward with this one.&lt;br /&gt;
** https://review.openstack.org/#/c/90070/&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56538</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56538"/>
				<updated>2014-06-23T20:57:11Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-23 Edgar Magana (emagana) - Training&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
** [https://review.openstack.org/95738 Removing Conditional Migration Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* A few new bugs of &amp;quot;High&amp;quot; importance.  All of them have owners but not all of them target a release.  Will follow up in this weeks meeting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Will be pushing to get tests passing on all of the patches.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070, all those who have an opinion please attend the IRC meeting this week, we would like to close on this or some part of this spec during this meeting&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
*** DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
*** Plugin-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** Neutron Mapping API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
*** Neutron Mapping DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
*** Neutron Mapping Plugin-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** API-2: https://review.openstack.org/#/c/101816/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* New python-neutronclient release requested&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-June/038389.html&lt;br /&gt;
* Flavor discussion with broader team&lt;br /&gt;
** Based on discussions at LBaaS sprint, flavor BP needs some tweaking.&lt;br /&gt;
** Would like to come to a conclusion to move forward with this one.&lt;br /&gt;
** https://review.openstack.org/#/c/90070/&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56537</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56537"/>
				<updated>2014-06-23T20:56:13Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-23 Edgar Magana (emagana) - Training&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
These are new failures seen in gate:&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330638] Lock wait timeout adding ipavailabilityranges&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330644] Lock wait timeout adding ipallocationpools&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1330639] Lock wait timeout adding vip to vips table &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* Nova Migration&lt;br /&gt;
** [https://review.openstack.org/95738 Design Spec]&lt;br /&gt;
** [https://review.openstack.org/#/c/100265 Nova Migration Extension ] (WIP)&lt;br /&gt;
* Database&lt;br /&gt;
** [https://review.openstack.org/#/c/101921 Design Spec]&lt;br /&gt;
*** salv-orlando and markmcclain are primary reviewers&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-23)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* A few new bugs of &amp;quot;High&amp;quot; importance.  All of them have owners but not all of them target a release.  Will follow up in this weeks meeting.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated more aggresively.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Will be pushing to get tests passing on all of the patches.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Will soon post a patch to devstack to automate as much of this how to as possible.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Flavors framework: https://review.openstack.org/#/c/90070, all those who have an opinion please attend the IRC meeting this week, we would like to close on this or some part of this spec during this meeting&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/multiple-ipv6-prefixes Support Multiple IPv6 Prefixes for IPv6 Network]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** EP, EPG, L2/3 Policy&lt;br /&gt;
*** API-1: https://review.openstack.org/#/c/95900&lt;br /&gt;
*** DB-1: https://review.openstack.org/#/c/96050&lt;br /&gt;
*** Plugin-1: https://review.openstack.org/#/c/96393&lt;br /&gt;
*** Neutron Mapping API-1: https://review.openstack.org/#/c/100716&lt;br /&gt;
*** Neutron Mapping DB-1: https://review.openstack.org/#/c/101795&lt;br /&gt;
*** Neutron Mapping Plugin-1: https://review.openstack.org/#/c/101957&lt;br /&gt;
&lt;br /&gt;
** Policy Classifier, Action, Rules&lt;br /&gt;
*** API-2: https://review.openstack.org/#/c/101816/&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* New python-neutronclient release requested&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-June/038389.html&lt;br /&gt;
* Flavor discussion with broader team&lt;br /&gt;
** Based on discussions at LBaaS sprint, flavor BP needs some tweaking.&lt;br /&gt;
** Would like to come to a conclusion to move forward with this one.&lt;br /&gt;
** https://review.openstack.org/#/c/90070/&lt;br /&gt;
* Ways to mitigate db lock timeout failures (ihrachyshka)&lt;br /&gt;
** drafted blueprint: https://blueprints.launchpad.net/neutron/+spec/schedule-actions-for-db-transaction-closed&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56021</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=56021"/>
				<updated>2014-06-16T21:01:00Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
* 2014-06-16 carl_baldwin Vacation&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-1 was released last Thursday&lt;br /&gt;
** https://launchpad.net/neutron/+milestone/juno-1&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* Additional payload as part of the delete event for Ceilometer (prad)&lt;br /&gt;
** This is discussed in the review below, but a way forward in the short-term needs to be found&lt;br /&gt;
** https://review.openstack.org/#/c/91474/4&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* DB subteam agreed on design for healing migration. Read the [http://eavesdrop.openstack.org/meetings/neutron_db/2014/neutron_db.2014-06-09-13.01.log.html meeting log]&lt;br /&gt;
* Reviewers needed for the [https://review.openstack.org/95738 design spec]&lt;br /&gt;
* WIP for [https://review.openstack.org/#/c/100265 Nova Extension] for migration&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins - WIP: Juno-2&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno - Investigating&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* Scenario tests under review:&lt;br /&gt;
** https://review.openstack.org/100143 Sean Collins / Sridhar Gaddam Add IPv4/IPv6 Provider Network Scenario tests&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged between 6/9 and 6/16&lt;br /&gt;
*** https://review.openstack.org/#/c/47816 MH Raies VPNaas IPSec policies tests&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-09)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* No new bugs of &amp;quot;High&amp;quot; importance or higher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated continuously.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
** Discussions about FWaaS integration with DVR.  Needs more discussion.  Also discussed in FWaaS team meeting.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
** Blueprint merged.&lt;br /&gt;
** In review on this [https://review.openstack.org/#/q/topic:bp/l3-svcs-vendor-validation,n,z gerrit topic]&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM (New topic for May 26th)&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Eugene had sought input on the Flavors specification, had started a -dev mailer thread (we would like to close on this at the earliest):&lt;br /&gt;
http://lists.openstack.org/pipermail/openstack-dev/2014-May/036169.html&lt;br /&gt;
We need to make progress at the earliest on the above.&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-06-10-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
** [https://github.com/openstack-dev/devstack/commit/e13fd6006d04a3732a776b94164e0bc5a2fec14d This needs to be merged, since we have patches to DevStack that have been merged that rely on the attributes to create IPv6 networks]&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-slaac Add support for slaac/slaac modes for ipv6 using dnsmasq]&lt;br /&gt;
** https://review.openstack.org/#/c/99595/ - marked as -2&lt;br /&gt;
** Discussion with Kyle Mestery and Mark McClain, as well as [http://lists.thekelleys.org.uk/pipermail/dnsmasq-discuss/2012q3/006262.html discussions with dnsmasq maintainer] has determined that effort should be redirected towards adding support for radvd to transmit RAs.&lt;br /&gt;
** dnsmasq-ipv6-slaac BP will need to be removed from J-2.&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/neutron-ipv6-radvd-ra Add RADVD to router namespaces to serve ipv6 RAs when required ]&lt;br /&gt;
** Needs a spec in neutron-specs&lt;br /&gt;
** Scheduled for J-2? J-3?&lt;br /&gt;
* [https://blueprints.launchpad.net/neutron/+spec/dnsmasq-ipv6-dhcpv6-stateful DHCPV6 Stateful] mode depends on radvd blueprint, will need dependency graph updated in launchpad or spec.&lt;br /&gt;
* Mark McClain has a suggestion to rename/relabel ipv6 attributes for clarity. Spec forthcoming.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bug/1323766  Incorrect Floating IP behavior in dual stack or ipv6 only network ]&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review (getting decent reviewer attention, more would be great):&lt;br /&gt;
** https://review.openstack.org/#/c/95900&lt;br /&gt;
** https://review.openstack.org/#/c/96050&lt;br /&gt;
** https://review.openstack.org/#/c/96393&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
** Service Objects: https://review.openstack.org/#/c/94133&lt;br /&gt;
&lt;br /&gt;
* High priority bug review blocked: https://review.openstack.org/#/c/90575/&lt;br /&gt;
&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* Stackalytics driverlog has unreliable information on it (anteaya)&lt;br /&gt;
** http://stackalytics.com/report/driverlog?project_id=openstack%2Fneutron&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=54576</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=54576"/>
				<updated>2014-06-02T21:00:01Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt; on Monday at 2100 UTC. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Juno-1 is a week from Thursday&lt;br /&gt;
** Juno-1 in LP: https://launchpad.net/neutron/+milestone/juno-1&lt;br /&gt;
** Juno schedule: https://wiki.openstack.org/wiki/Juno_Release_Schedule&lt;br /&gt;
** Prioritize reviewing these items, especially DVR related patches.&lt;br /&gt;
*** DVR reviews: https://review.openstack.org/#/q/status:open+project:openstack/neutron+branch:master+topic:bp/neutron-ovs-dvr,n,z&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
* Mid-Cycle Sprint focused on LBaaS&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-lbaas-mid-cycle&lt;br /&gt;
** Location likely to be either Dallas or Houston at a hotel near the airport&lt;br /&gt;
** 3 days during the week of June 16&lt;br /&gt;
** More information coming out soon&lt;br /&gt;
** Need at least one more core to attend, maybe two. Currently only Kyle and Mark are attending.&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
* &amp;quot;ssh&amp;quot; failures are on the rise in the gate&lt;br /&gt;
** Need to prioritize finding root cause for these issues&lt;br /&gt;
** Also on the rise for stable/icehouse, trying to find change which was backported and is causing the issue&lt;br /&gt;
* MySQL Galera does *not* support SELECT ... FOR UPDATE&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-May/035264.html&lt;br /&gt;
** 44 instances of this in Neutron.&lt;br /&gt;
** Discussion around how to address this.&lt;br /&gt;
* Stable branch is still having stability problems in the test runs.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?search=Search&amp;amp;field.importance=Critical&amp;amp;field.status=New&amp;amp;field.status=Confirmed&amp;amp;field.status=Triaged&amp;amp;field.status=In+Progress Critical Open Bugs]&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1280464 grenade-dsvm-neutron Failure in upgrade-swift] - jlibosva&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These bugs are in nova but are related to neutron. It would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Team Discussion Topics ===&lt;br /&gt;
* oslo.messaging port [https://review.openstack.org/#/c/75861/ here] with ihrachyshka.&lt;br /&gt;
** Continued discussion from last week&lt;br /&gt;
* OVS firewall driver discussion with asadoughi&lt;br /&gt;
** The question here is: OVS Firewall driver can only do 80% of existing iptables firewall driver (for now). Are we as a team ok with letting this BP into Juno with this limitation?&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1260129  - Summer Long - Release Notes&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP Based on Mate Lakat Blog&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Sean Collins&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* DB subteam discussed healing migration. Read the [http://eavesdrop.openstack.org/meetings/neutron_db/2014/neutron_db.2014-05-27-13.02.log.html meeting log]&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
&amp;lt;small&amp;gt;(updated 2014-06-02)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;[https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&amp;lt;/big&amp;gt;&lt;br /&gt;
* No new bugs of &amp;quot;High&amp;quot; importance or higher.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;big&amp;gt;Active Projects&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
** Patches are being updated continuously.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.  See [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo How To] for notes on where you should be reviewing.&lt;br /&gt;
** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
** Discussions about FWaaS integration with DVR.  Needs more discussion.  Also discussed in FWaaS team meeting.&lt;br /&gt;
&lt;br /&gt;
* pluggable-ext-net&lt;br /&gt;
** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
&lt;br /&gt;
* l3-high-availability&lt;br /&gt;
** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
* l3-svcs-vendor-*&lt;br /&gt;
&lt;br /&gt;
* bgp-dynamic-routing&lt;br /&gt;
** Blueprint was updated this week, needs reviewing.&lt;br /&gt;
&lt;br /&gt;
* IPAM (New topic for May 26th)&lt;br /&gt;
&lt;br /&gt;
* Multiple subnets on external networks (carl_baldwin).&lt;br /&gt;
** This works with [https://review.openstack.org/#/c/90250/ this patch] which was merged.&lt;br /&gt;
** This is an alternative to [http://docs.openstack.org/admin-guide-cloud/content/adv_cfg_l3_agent_multi_extnet.html Multiple floating IP pools] in the admin guide.&lt;br /&gt;
&lt;br /&gt;
* DNS (carl_baldwin)&lt;br /&gt;
** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno plan and reviews:&lt;br /&gt;
https://wiki.openstack.org/wiki/Neutron/AdvancedServices/JunoPlan&lt;br /&gt;
&lt;br /&gt;
* Eugene is seeking input on the Flavors specification, has started a -dev mailer thread (we would like to close on this at the earliest):&lt;br /&gt;
http://lists.openstack.org/pipermail/openstack-dev/2014-May/036169.html&lt;br /&gt;
&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-05-27-14.01.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
====Current blockers that need attention from core reviewers====&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - marked as workflow-1&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* Patches in review:&lt;br /&gt;
** https://review.openstack.org/#/c/95900&lt;br /&gt;
** https://review.openstack.org/#/c/96050&lt;br /&gt;
** https://review.openstack.org/#/c/96393&lt;br /&gt;
&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Critical bug has been downgraded to High, SridarK still investigating if this is actually a FWaaS issue&lt;br /&gt;
* Juno plan and reviews: https://wiki.openstack.org/wiki/Neutron/FWaaS/JunoPlan&lt;br /&gt;
* FWaaS weekly IRC meetings: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
&lt;br /&gt;
* Can we use opencontrail as refimpl for BGPVPN? (nati_ueno)&lt;br /&gt;
** https://review.openstack.org/#/c/93329/&lt;br /&gt;
* I've started collecting wiki pages around Neutron policies (e.g. core team membership, gate failures, reviews, etc.)&lt;br /&gt;
** Documented here: https://wiki.openstack.org/wiki/NeutronPolicies&lt;br /&gt;
** I encourage the core team and others to fill in the gaps&lt;br /&gt;
** The idea is to have a single place for people to go with questions about Neutron, and to document as much of our process as possible&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Neutron/AdvancedServices/JunoPlan&amp;diff=54403</id>
		<title>Neutron/AdvancedServices/JunoPlan</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Neutron/AdvancedServices/JunoPlan&amp;diff=54403"/>
				<updated>2014-05-31T07:49:03Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Reviewers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Reviewers ==&lt;br /&gt;
&lt;br /&gt;
Please add your name if you would like to be on the &amp;quot;assigned reviewers&amp;quot; team for Advanced Services (with IRC handle):&lt;br /&gt;
&lt;br /&gt;
Ryan Moats (regXboi), Louis F (LouisF), Marios Andreou (marios), Ivar Lazzaro (ivar-lazzaro)&lt;br /&gt;
&lt;br /&gt;
Neutron core reviewers:&lt;br /&gt;
&lt;br /&gt;
Bob Kukura (rkukura), Mark McClain (markmcclain), Sumit Naiksatam (SumitNaiksatam)&lt;br /&gt;
&lt;br /&gt;
== Tasks ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task !! Gerrit Link !! Status !! Milestone !! Owner&lt;br /&gt;
|-&lt;br /&gt;
! Topic: Framework&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/92200 || Approved || Juno || Sumit&lt;br /&gt;
|-&lt;br /&gt;
! Topic: Neutron Flavor Framework&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/90070 || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| Neutron || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| CLI/Client || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| Tempest || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| Horizon || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| Heat || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
| Documentation || Pending || Pending || Not set || Eugene&lt;br /&gt;
|-&lt;br /&gt;
! Topic: Service Insertion&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/93128 || Pending || J1 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| Neutron || Pending || Pending || J1 and J2 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| CLI/Client || Pending || Pending || J1 and J2 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| Tempest || Pending || Pending || J2 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| Horizon || Pending || Pending || J2 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| Heat || Pending || Pending || Not set || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
| Documentation || Pending || Pending || J2 || Kanzhe&lt;br /&gt;
|-&lt;br /&gt;
! Topic: Traffic Steering&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/92477 || Pending || J1 || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| Neutron || Pending || Pending || J2 || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| CLI/Client || Pending || Pending || J2 || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| DevStack || Pending || Pending || J2 || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| Tempest || Pending || Pending || Not set || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| Horizon || Pending || Pending || Not set || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| Heat || Pending || Pending || Not set || Carlos&lt;br /&gt;
|-&lt;br /&gt;
| Documentation || Pending || Pending || Not set || Carlos&lt;br /&gt;
|-&lt;br /&gt;
! Topic: Service Chaining&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/93524 || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| Neutron || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| CLI/Client || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| Tempest || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| Horizon || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| Heat || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
| Documentation || Pending || Pending || Not set || Mandeep&lt;br /&gt;
|-&lt;br /&gt;
! Topic: L3 Agent consolidation&lt;br /&gt;
|-&lt;br /&gt;
| Blueprint || https://review.openstack.org/#/c/91532 || Pending || Not set || Toshihiro&lt;br /&gt;
|-&lt;br /&gt;
| Neutron || Pending || Pending || Not set || Toshihiro&lt;br /&gt;
|-&lt;br /&gt;
| CLI/Client || NA || NA || NA || NA&lt;br /&gt;
|-&lt;br /&gt;
| Tempest || Pending || Pending || Not set || Toshihiro&lt;br /&gt;
|-&lt;br /&gt;
| Horizon || NA || NA || NA || NA&lt;br /&gt;
|-&lt;br /&gt;
| Heat || NA || NA || NA || NA&lt;br /&gt;
|-&lt;br /&gt;
| Documentation || Pending || Pending || Not set || Toshihiro&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	<entry>
		<id>https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=53701</id>
		<title>Network/Meetings</title>
		<link rel="alternate" type="text/html" href="https://wiki.openstack.org/w/index.php?title=Network/Meetings&amp;diff=53701"/>
				<updated>2014-05-26T21:05:36Z</updated>
		
		<summary type="html">&lt;p&gt;Markmcclain: /* Nova Parity (markmcclain) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
{{:Network/Header}}&lt;br /&gt;
&lt;br /&gt;
The OpenStack Networking Team ([[Neutron]]) holds public meetings in &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;#openstack-meeting&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;. Everyone is encouraged to attend.&lt;br /&gt;
&lt;br /&gt;
== Apologies for Absence ==&lt;br /&gt;
&lt;br /&gt;
* Edgar Magana (emagana) - May/26/2014 - USA Holiday&lt;br /&gt;
&lt;br /&gt;
== Agenda for Next Neutron Team Meeting ==&lt;br /&gt;
&lt;br /&gt;
=== Announcements / Reminders ===&lt;br /&gt;
* Welcome Carl Baldwin to the Neutron core team!&lt;br /&gt;
* Mid-Cycle Sprint focused on nova-network parity and core refactoring&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-mid-cycle-meeting&lt;br /&gt;
** 3 focused days to close on gaps in the parity plan shown here:&lt;br /&gt;
*** https://wiki.openstack.org/wiki/Governance/TechnicalCommittee/Neutron_Gap_Coverage&lt;br /&gt;
* Mid-Cycle Sprint focused on LBaaS&lt;br /&gt;
** https://etherpad.openstack.org/p/neutron-juno-lbaas-mid-cycle&lt;br /&gt;
** Location likely to be either Dallas or Houston at a hotel near the airport&lt;br /&gt;
** 3 days during the week of June 16&lt;br /&gt;
** More information coming out soon&lt;br /&gt;
** Need at least one more core to attend, maybe two. Currently only Kyle and Mark are attending.&lt;br /&gt;
&lt;br /&gt;
=== Bugs ===&lt;br /&gt;
* MySQL Galera does *not* support SELECT ... FOR UPDATE&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-dev/2014-May/035264.html&lt;br /&gt;
** 44 instances of this in Neutron.&lt;br /&gt;
** Discussion around how to address this.&lt;br /&gt;
* This one is back:&lt;br /&gt;
** https://bugs.launchpad.net/tempest/+bug/1253896&lt;br /&gt;
** Possible partial fix here, would be good to get core reviews on this ASAP&lt;br /&gt;
*** https://review.openstack.org/92018&lt;br /&gt;
* Stable branch is still having stability problems in the test runs.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?search=Search&amp;amp;field.importance=Critical&amp;amp;field.status=New&amp;amp;field.status=Confirmed&amp;amp;field.status=Triaged&amp;amp;field.status=In+Progress Critical Open Bugs]&lt;br /&gt;
** [https://bugs.launchpad.net/neutron/+bug/1280464 grenade-dsvm-neutron Failure in upgrade-swift] - jlibosva&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This bugs are in nova that are related to neutron that would be great if we could get neutron reviews on:&lt;br /&gt;
** [https://review.openstack.org/#/c/80760/] Remove unneeded call to fetch network info on shutdown - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81674/] remove unneeded call to network_api on detach_interface - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/81681/] remove unneeded call to network_api on rebuild_instance - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80055/] Optimize validate_networks to query neutron only when needed - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/80412/] deallocate_for_instance should delete all neutron ports on error - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/59578/] Fix port_security_enabled neutron extension - arosen&lt;br /&gt;
** [https://review.openstack.org/#/c/77043/] Fix pre-created ports in neutron from being deleted by nova - arosen&lt;br /&gt;
&lt;br /&gt;
=== Docs (emagana)===&lt;br /&gt;
&lt;br /&gt;
High Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1296997 - Steven Weston - WIP&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1260129  - Summer Long - Release Notes&lt;br /&gt;
&lt;br /&gt;
Medium Priority Tickets:&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1026745  - Edgar Magana - WIP Based on Mate Lakat Blog&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1112866  - Edgar Magana - WIP&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1226279 - Diane F. - Closing&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1293897 - Unassigned&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1295451 - Nachi Ueno&lt;br /&gt;
* https://bugs.launchpad.net/openstack-manuals/+bug/1307133 - Edgar Magana - WIP&lt;br /&gt;
&lt;br /&gt;
* HA Neutron - Proposal&lt;br /&gt;
** http://lists.openstack.org/pipermail/openstack-docs/2014-January/003689.html&lt;br /&gt;
&lt;br /&gt;
* Current list of bugs against neutron docs: https://bugs.launchpad.net/openstack-manuals/+bugs?field.tag=neutron&lt;br /&gt;
&lt;br /&gt;
=== Nova Parity (markmcclain) ===&lt;br /&gt;
* [https://wiki.openstack.org/wiki/Meetings/NeutronDB DB team meeting to work on healing migration].  This will unblock grenade which is one of items needed for parity.&lt;br /&gt;
* Other work resuming now that post summit holidays are over.&lt;br /&gt;
&lt;br /&gt;
=== Neutron Tempest (mlavalle) ===&lt;br /&gt;
* Full Tempest Test Update (salv-orlando)&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-February/027797.html ML Thread for Full Tempest]&lt;br /&gt;
** [http://lists.openstack.org/pipermail/openstack-dev/2014-March/030907.html Latest analysis of the failures]&lt;br /&gt;
* Juno design summit&lt;br /&gt;
** QA / Tempest etherpad https://etherpad.openstack.org/p/TempestAndNeutronJuno was created and added to https://wiki.openstack.org/wiki/Summit/Juno/Etherpads#Neutron. Four areas of work proposed for Juno cycle:&lt;br /&gt;
*** Special focus on increase the number and coverage of scenario tests&lt;br /&gt;
*** Conclude gaps that might have been left in api tests during Icehouse&lt;br /&gt;
*** Support nova parity sub-project if needed&lt;br /&gt;
*** Support other Neutron sub-projects if needed&lt;br /&gt;
** Message sent to the ML pointing to the etherpad asking for input on the four areas of work proposed&lt;br /&gt;
* api tests pending to merge&lt;br /&gt;
** https://review.openstack.org/#/c/60008 Evgeny Fedoruk (Extending quota support for neutron LBaaS entities)&lt;br /&gt;
** https://review.openstack.org/#/c/83627 Miguel Lavalle (VPNaaS API Tests Enhancements)&lt;br /&gt;
** https://review.openstack.org/#/c/93483 Sridhar Gaddam (Test IPV6 Subnet creation with Gateway-IP as LLA)&lt;br /&gt;
** https://review.openstack.org/#/c/93502 Sean Collins (Add ipv6 attribute tests)&lt;br /&gt;
** https://review.openstack.org/#/c/92436  Armando Migliaccio (Use a more sensible network topology for some router tests)&lt;br /&gt;
** https://review.openstack.org/#/c/90427/&lt;br /&gt;
* api tests abandoned (as of 5/5)&lt;br /&gt;
** https://review.openstack.org/#/c/79864 (Test for neutron api with provider extension). This patchset will be restored by mlavalle&lt;br /&gt;
* List of api tests merged:&lt;br /&gt;
** Patchsets merged bewteen 5/20 and 5/26&lt;br /&gt;
*** https://review.openstack.org/#/c/71251 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/66259 Miguel Lavalle (Neutron Allowed Address Pair API test)&lt;br /&gt;
** Patchsets merged between 5/5 and 5/19&lt;br /&gt;
*** https://review.openstack.org/#/c/63723 Ann Kamyshnikova (Verify more information in floating ip tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67312 Edgar Magana (Add test for subnet gateway IPv4 and IPv6)&lt;br /&gt;
***  https://review.openstack.org/#/c/66454 Sylvain Afchain (Improve the extra routes test on router)&lt;br /&gt;
** Patchsets merged beween 4/22 and 4/28 &lt;br /&gt;
*** https://review.openstack.org/#/c/66541 Ann Kamyshnikova (Verify more information for member in lbaas api tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/67547 Dane LeBlanc (Add network API test to create/update a port with 2 IP addresses)&lt;br /&gt;
** Patchsets merged between 4/8 and 4/14 &lt;br /&gt;
*** https://review.openstack.org/#/c/65943 Ann Kamyshnikova (Verify more information for pools in lbaas tests)&lt;br /&gt;
** Patchsets merged between 4/1 and 4/7&lt;br /&gt;
*** https://review.openstack.org/#/c/78857/ MH Raies (Network fwaas API test)&lt;br /&gt;
** Patchsets merged between 3/25 and 3/31&lt;br /&gt;
*** https://review.openstack.org/#/c/68597 Nayna Patel (Adds &amp;quot;add_dhcp_agent&amp;quot; to test_dhcp_agent_scheduler)&lt;br /&gt;
** Patchsets merged between 3/18 and 3/24&lt;br /&gt;
*** https://review.openstack.org/#/c/66796 Elena Ezhova (Add api tests for load balancer's VIPs and health monitors)&lt;br /&gt;
*** https://review.openstack.org/#/c/66921 Sukhdev Kapur (Networks,Ports: delete with subnet, port with no IP)&lt;br /&gt;
***  https://review.openstack.org/#/c/63999 Ann Kamyshnikova (Add tests for external network extension)&lt;br /&gt;
** Patchsets merged between 3/11 and 3/17&lt;br /&gt;
*** https://review.openstack.org/#/c/61118 Ann Kamyshnikova (Verify more information in API tests for LBaaS)&lt;br /&gt;
*** https://review.openstack.org/#/c/68626 Nanya Patel (Adds L3 agent test case to test_l3_agent_schedule)&lt;br /&gt;
*** https://review.openstack.org/#/c/64271 Elena Ezhova (Add tests for binding extended attributes for ports)&lt;br /&gt;
** Patchsets merged between 3/3 and 3/10&lt;br /&gt;
*** https://review.openstack.org/#/c/69561 Nanya Patel (Test to update neutron security group)&lt;br /&gt;
*** https://review.openstack.org/#/c/64130 Ann Kamyshnikova (Add namespaces to xml in Network client)&lt;br /&gt;
** Patchsets merged between 2/25 and 3/2&lt;br /&gt;
*** https://review.openstack.org/#/c/74744 Jun Xie (test create router setting tenant_id)&lt;br /&gt;
*** https://review.openstack.org/#/c/73789 Dong Liu (test more attributes for routers operation)&lt;br /&gt;
*** https://review.openstack.org/#/c/69829 Nanya Patel (json and xml client refactoring for security group operations)&lt;br /&gt;
** Patchsets merged between 2/17 and 2/24&lt;br /&gt;
*** https://review.openstack.org/#/c/67210 Henry Gessau (Network API framework: default to ipv4, add ipv6 tests)&lt;br /&gt;
*** https://review.openstack.org/#/c/65120 Miguel Lavalle (lbaas agent scheduler)&lt;br /&gt;
*** https://review.openstack.org/#/c/67741 Miguel Lavalle (Neutron Extra DHCP Options API test)&lt;br /&gt;
*** https://review.openstack.org/#/c/66143 Emilien Macchi  (api metering labels and rules)&lt;br /&gt;
&lt;br /&gt;
=== API (salv-orlando) ===&lt;br /&gt;
No report&lt;br /&gt;
&lt;br /&gt;
=== L3 (carl_baldwin) ===&lt;br /&gt;
(updated 2014-05-26)&lt;br /&gt;
&lt;br /&gt;
See [[Meetings/Neutron-L3-Subteam]] for detail.&lt;br /&gt;
&lt;br /&gt;
* [[Meetings/Neutron-L3-Subteam|Team meeting]] on Thursdays at 1500 UTC.&lt;br /&gt;
* [https://bugs.launchpad.net/neutron/+bugs?field.tag=l3-ipam-dhcp Bugs]&lt;br /&gt;
** No new bugs of &amp;quot;High&amp;quot; importance or higher.&lt;br /&gt;
* Active Projects&lt;br /&gt;
** neutron-ovs-dvr ([[Meetings/Distributed-Virtual-Router|meeting page]])&lt;br /&gt;
*** [http://junodesignsummit.sched.org/event/10204507b0342a874abc315cda0db1e3#.U2fFga1dVcM Design summit discussion] and [https://etherpad.openstack.org/p/Distributed-Virtual-Router etherpad]&lt;br /&gt;
*** Patches have been updated.  [https://review.openstack.org/#/q/topic:bp/neutron-ovs-dvr,n,z bp/neutron-ovs-dvr] gerrit topic.&lt;br /&gt;
*** Started [https://wiki.openstack.org/wiki/Neutron/DVR/HowTo how to page] which we will be working on this week.  Need people willing to grab code and test.&lt;br /&gt;
*** Discussions about FWaaS integration with DVR.  Needs more discussion.  Also discussed in FWaaS team meeting.&lt;br /&gt;
** pluggable-ext-net&lt;br /&gt;
*** [http://junodesignsummit.sched.org/event/562393582543b1a0da0db766a5c4a7b3#.U2fC2K1dVcM Design summit discussion] and [https://etherpad.openstack.org/p/juno-neutron-pluggable-external-network etherpad].&lt;br /&gt;
*** Blueprint needs review on [https://review.openstack.org/#/q/topic:bp/pluggable-ext-net,n,z gerrit topic].&lt;br /&gt;
*** (carl_baldwin) I'll be implementing this with DVR as a dependency which means I've got to get my DVR test bed off the ground this week.&lt;br /&gt;
** l3-svcs-vendor-*&lt;br /&gt;
*** [http://junodesignsummit.sched.org/event/ec75430f233b61e6354aabf40108972d#.U2fCF61dVcM Design summit discussion] and [https://etherpad.openstack.org/p/L3-vendor-plugins etherpad].&lt;br /&gt;
** bgp-dynamic-routing&lt;br /&gt;
*** [http://junodesignsummit.sched.org/event/562393582543b1a0da0db766a5c4a7b3#.U2fC2K1dVcM Design summit discussion].&lt;br /&gt;
*** Blueprint will be updated this week.&lt;br /&gt;
** IPAM (New topic for May 26th)&lt;br /&gt;
*** [https://etherpad.openstack.org/p/ipam_pod Design summit etherpad discussion]&lt;br /&gt;
*** Beginning review and consolidation of existing related blueprints.&lt;br /&gt;
*** Will upload a spec for review in neutron-specs repository this week.&lt;br /&gt;
** Multiple subnets on external networks (carl_baldwin).&lt;br /&gt;
*** This works with [https://review.openstack.org/#/c/90250/ this patch].  Needs one more +2.&lt;br /&gt;
*** This is an alternative to [http://docs.openstack.org/admin-guide-cloud/content/adv_cfg_l3_agent_multi_extnet.html Multiple floating IP pools] in the admin guide.&lt;br /&gt;
** DNS (carl_baldwin)&lt;br /&gt;
*** Blueprints in review.  Otherwise, work will wait until DVR is merged.  [https://blueprints.launchpad.net/neutron/+spec/internal-dns-resolution internal-dns-resolution], [https://blueprints.launchpad.net/neutron/+spec/external-dns-resolution external-dns-resolution]&lt;br /&gt;
** l3-high-availability&lt;br /&gt;
*** Patches are in review on [https://review.openstack.org/#/q/project:openstack/neutron+branch:master+topic:bp/l3-high-availability,n,z bp/l3-high-availability] gerrit topic.&lt;br /&gt;
*** Will be evaluating these patches along with DVR.&lt;br /&gt;
&lt;br /&gt;
=== Advanced Services (SumitNaiksatam) ===&lt;br /&gt;
* Juno umbrella blueprint approved: https://review.openstack.org/#/c/92200&lt;br /&gt;
* Juno planned features discussed at a high level during summit&lt;br /&gt;
* Individual blueprint specs in review:&lt;br /&gt;
** Flavors framework: https://review.openstack.org/#/c/90070&lt;br /&gt;
** Service Base definition and insertion: https://review.openstack.org/#/c/93128&lt;br /&gt;
** Traffic steering: https://review.openstack.org/#/c/92477&lt;br /&gt;
** Service Chaining: https://review.openstack.org/#/c/93524&lt;br /&gt;
* Wiki (including weekly IRC meetings): https://wiki.openstack.org/wiki/Neutron/AdvancedServices&lt;br /&gt;
&lt;br /&gt;
=== IPv6 (sc68cal) ===&lt;br /&gt;
* Weekly [[Meetings/Neutron-IPv6-Subteam]] meeting&lt;br /&gt;
* [http://eavesdrop.openstack.org/meetings/neutron_ipv6/2014/neutron_ipv6.2014-05-20-14.00.html Subteam meeting Minutes] - contains links to important reviews and blueprints&lt;br /&gt;
====Current blockers that need attention from core reviewers====&lt;br /&gt;
* [https://review.openstack.org/#/c/75871/ IPv6 attributes support in python-neutronclient] - needs to be restored by author and -2 cleared&lt;br /&gt;
* [https://review.openstack.org/#/c/88043/ Neutron IPv6 provider slaac blueprint] - needs core reviews&lt;br /&gt;
* [https://review.openstack.org/88584 Install SNAT rules for ipv4 only] - needs core reviews&lt;br /&gt;
&lt;br /&gt;
=== ML2 (rkukura/Sukhdev) ===&lt;br /&gt;
* Weekly [[Meetings/ML2]] are held, please attend if interested!&lt;br /&gt;
** Will discuss Juno summit sessions this week and prioritize plans&lt;br /&gt;
&lt;br /&gt;
=== Group Policy (SumitNaiksatam) ===&lt;br /&gt;
* PoC was presented in the Atlanta Summit&lt;br /&gt;
* Neutron WIP patches:&lt;br /&gt;
** https://review.openstack.org/#/c/93853&lt;br /&gt;
** https://review.openstack.org/#/c/93935/&lt;br /&gt;
* Weekly meeting here: https://wiki.openstack.org/wiki/Meetings/Neutron_Group_Policy&lt;br /&gt;
&lt;br /&gt;
=== FWaaS (SumitNaiksatam) ===&lt;br /&gt;
&lt;br /&gt;
* Critical bug has been downgraded to High, SridarK still investigating if this is actually a FWaaS issue&lt;br /&gt;
* FWaaS Juno was submitted during Atlanta summit, please attend IRC meeting to followup: https://wiki.openstack.org/wiki/Meetings/FWaaS&lt;br /&gt;
&lt;br /&gt;
=== Open Discussion ===&lt;br /&gt;
* oslo.messaging port [https://review.openstack.org/#/c/75861/ here].&lt;br /&gt;
** Still WIP, two technical issues to be resolved.&lt;br /&gt;
** Needs split up (Mark suggested into three parts - preparation, port to oslo.messaging, and finally removal of oslo-rpc from the tree).&lt;br /&gt;
** What about neutron-specs?&lt;br /&gt;
** opened issue with plugin API lacking any stop_rpc_listener() function&lt;br /&gt;
&lt;br /&gt;
== Previous meeting logs ==&lt;br /&gt;
* Previous meetings, with their notes and logs, can be found [http://eavesdrop.openstack.org/meetings/networking/ here].&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2014/?C=M;O=D networking-2014]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/networking/2013/?C=M;O=D networking-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2013/?C=M;O=D quantum-2013]&lt;br /&gt;
** [http://eavesdrop.openstack.org/meetings/quantum/2012/?C=M;O=D quantum-2012]&lt;br /&gt;
* Older meeting notes are here:  ../MeetingLogs.&lt;/div&gt;</summary>
		<author><name>Markmcclain</name></author>	</entry>

	</feed>