<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The OpenStack Blog</title>
	<atom:link href="http://www.openstack.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openstack.org/blog</link>
	<description>Open Source Cloud Computing Software</description>
	<lastBuildDate>Thu, 23 May 2013 16:36:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>An introductory tour of OpenStack Cloud Messaging as a Service</title>
		<link>http://www.openstack.org/blog/2013/05/an-introductory-tour-of-openstack-cloud-messaging-as-a-service/</link>
		<comments>http://www.openstack.org/blog/2013/05/an-introductory-tour-of-openstack-cloud-messaging-as-a-service/#comments</comments>
		<pubDate>Thu, 23 May 2013 16:36:21 +0000</pubDate>
		<dc:creator>Stephen Spector</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Partner]]></category>
		<category><![CDATA[HP Public Cloud]]></category>
		<category><![CDATA[Messaging as a Service]]></category>
		<category><![CDATA[Project Marconi]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4212</guid>
		<description><![CDATA[Post by Mark Atwood, Director of OpenSource Engineering for HP Cloud The need for well understood intra-application messaging was one of the signs that new application design patterns beyond just the LAMP stack were needed. The need for an OpenStack Messaging Service was recognized by the San Diego Grizzly Summit, and in an unconference track [...]]]></description>
				<content:encoded><![CDATA[<p>Post by <a href="mark.atwood@hp.com">Mark Atwood</a>, Director of OpenSource Engineering for HP Cloud</p>
<p><a href="http://www.openstack.org/blog/wp-content/uploads/2013/05/5.23.13-Cloud-Messaging.jpg"><img class="alignleft size-full wp-image-4218" alt="5.23.13-Cloud-Messaging" src="http://www.openstack.org/blog/wp-content/uploads/2013/05/5.23.13-Cloud-Messaging.jpg" width="220" height="164" /></a></p>
<p>The need for well understood intra-application messaging was one of the signs that new application design patterns beyond just the LAMP stack were needed.</p>
<p>The need for an OpenStack Messaging Service was recognized by the San Diego Grizzly Summit, and in an unconference track design meeting on the last day, a crowd of interested people met, talked out some requirements, and from that the <a href="https://wiki.openstack.org/wiki/Marconi">OpenStack Message Bus</a> project was born. It was codenamed &#8220;Marconi&#8221;, in honor of <a href="http://en.wikipedia.org/wiki/Guglielmo_Marconi">Guglielmo Marconi</a>, the inventor of wireless messaging. The Marconi team collaborates on <a href="https://launchpad.net/marconi">Launchpad</a>.</p>
<p>At the same time, HP was looking for a way to make it&#8217;s already under development application messaging service available to users of the <a href="http://hpcloud.com/">HP Cloud</a>. When the Marconi project appeared, HP decided that instead of splitting the developer community in a pointless API standards war, it made more sense to clone and track the public <a href="https://wiki.openstack.org/wiki/Marconi/specs/zmq/api/v1">Marconi API</a>, and then contribute to open source Marconi project itself.</p>
<p>As part of the development process, HP is running the messaging service in &#8220;developer preview&#8221;, meaning that you have to ask to be enrolled in the preview program to access it, and neither the service nor the API are stable. Oh, and right now it is free of charge.</p>
<p>Log into your <a href="https://console.hpcloud.com/login">HP Cloud account</a>, and then go to the URL <a href="https://account.hpcloud.com/services">https://account.hpcloud.com/services</a> and look for &#8220;Beta Services&#8221; and then &#8220;Request Access&#8221; to &#8220;Messaging&#8221;. Your request will be reviewed, and then activated. This can potentially take a couple of days, because there are human beings in this decision loop.</p>
<p>All parts of OpenStack and HP Cloud are controlled via RESTful APIs, and Messaging is no exception. We will access the raw API with the cURL command line tool. Using a specialized client tool can be simpler to use, and such tools are under development. However, walking this process step by step the first time helps build an understand of how all the parts work.</p>
<p>First thing we need is the API credentials to your HP Cloud account.</p>
<p>After logging into your HP Cloud account, go to the URL <a href="https://account.hpcloud.com/account/api_keys">https://account.hpcloud.com/account/api_keys</a> and look for following information:</p>
<ul>
<li>&#8220;Project ID&#8221;, something like &#8220;58345815996918&#8243;</li>
<li>&#8220;Access Key #1&#8243;, something like &#8220;2DJ3Z58RZB5JJ7V2JKS3&#8243;</li>
<li>&#8220;Show Secret Key&#8221;. When you click on it, it will reveal something like &#8220;bPH13haenb/DlvR1th+u4Uj5ehvYKsF7ApYact6i&#8221;</li>
<li>The URL for &#8220;Identity&#8221; &#8220;region-a.geo-1&#8243;. It will be something like https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0/</li>
<li>The URL for &#8220;Messaging&#8221; &#8220;region-a.geo-1&#8243;. It will be something like https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918</li>
</ul>
<p>Now open a text editor, and construct a file named keystone-req.json with JSON contents like the following, only with your own access key, secret key, and tenant id (aka &#8220;project id&#8221;).</p>
<p><code>{<br />
"auth": {<br />
"apiAccessKeyCredentials": {<br />
"accessKey": "2DJ3Z58RZB5JJ7V2JKS3",<br />
"secretKey": "bPH13haenb/DlvR1th+u4Uj5ehvYKsF7ApYact6i"<br />
},<br />
"tenantId": "58345815996918"<br />
}<br />
}</code></p>
<p>Now, at the command prompt, run the following cURL command. Notice that the URL is the one for &#8220;Identity&#8221; &#8220;region-a.geo-1&#8243; we looked up earlier, with the path part &#8220;/tokens&#8221; appended to it.</p>
<p><code>curl -X POST -H "Content-Type: application/json" \<br />
https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0/tokens \<br />
-d @keystone-req.json \<br />
| python -mjson.tool &gt; keystone-rsp.json<br />
Notice that we pipe the output through "python -mjson.tool". This is a useful trick for prettyprinting JSON to make it more readable.</code></p>
<p>Open up the resulting file keystone-rsp.json in a text editor, and take a look.</p>
<p>Search down for the string &#8220;token&#8221;, and you should see something lilke</p>
<p><code>"token": {<br />
"expires": "2013-05-21T12:38:16.962Z",<br />
"id": "HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20",<br />
"tenant": {<br />
"id": "58345815996918",<br />
"name": "mark.atwood@hp.com-tenant1"<br />
}<br />
},<br />
</code><br />
The important part is the &#8220;access.token.id&#8221; value. We are going to paste that string into the HTTP X-Auth header for the next few cURL commands.</p>
<p>Now search the file for the string &#8220;hpext:messaging&#8221;, and you will find a block of JSON that looks like this:</p>
<p><code>{<br />
"endpoints": [<br />
{<br />
"publicURL": "https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918",<br />
"publicURL2": "",<br />
"region": "region-a.geo-1",<br />
"tenantId": "58345815996918",<br />
"versionId": "1.1",<br />
"versionInfo": "https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1",<br />
"versionList": "https://region-a.geo-1.messaging.hpcloudsvc.com"<br />
}<br />
],<br />
"name": "Messaging",<br />
"type": "hpext:messaging"<br />
},</code><br />
The &#8220;publicURL&#8221; is the URL we can use to issue REST commands to the Messaging service. Here is how we list all the queues we can use. Notice that we pass the keystone authentication token in on the X-Auth-Token header.</p>
<p><code>curl -X GET -H "Content-Type: application/json" \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \<br />
https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues \<br />
| python -mjson.tool</code><br />
We will probably see</p>
<p><code>{<br />
"queues": []<br />
}</code><br />
which means, logically enough, no queues have been created.</p>
<p>Let&#8217;s create one. We change the method to PUT and append queues/foo to create a queue named &#8220;foo&#8221;. There is no need to use the JSON prettyprinter, because no request body will be returned.</p>
<p><code>curl -X PUT -H "Content-Type: application/json" \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \</p>
<p>https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues/foo</code></p>
<p>And then let&#8217;s again list all the queues.</p>
<p><code>curl -X GET -H "Content-Type: application/json" \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \<br />
https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues \<br />
| python -mjson.tool</code><br />
which returns</p>
<p><code>{<br />
"queues": [<br />
{<br />
"name": "foo"<br />
}<br />
]<br />
}</code><br />
Look at that that! A queue named foo.</p>
<p>Now let&#8217;s put something on that foo queue. We do that by POSTing some JSON to the queue URL with the path part &#8220;/messages&#8221; appended, like so:</p>
<p><code>curl -X POST -H "Content-Type: application/json" \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \<br />
https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues/foo/messages \<br />
-d '{ "body": "Hello World!" }'</code><br />
And then read it back.</p>
<p><code>curl -X GET -H "Content-Type: application/json" \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \</code></p>
<p>https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues/foo/messages</p>
<p>which will remove the item and display</p>
<p><code>{"id":"b41ea44e-3962-4010-80ad-4f87dcd6ba8d","body":"Hello World!"}</code><br />
And then let&#8217;s delete the queue</p>
<p><code>curl -X DELETE \<br />
-H "X-Auth-Token: HPAuth10_3e1c44e527f0e64387ff0705e1b09d0ca3ef47c47a6c6afe1738d77f896b4f20" \</p>
<p>https://region-a.geo-1.messaging.hpcloudsvc.com/v1.1/58345815996918/queues/foo</code></p>
<p>As always, if you have any questions, send us an email. You can contact me directly at <a href="mailto:mark.atwood@hp.com">mark.atwood@hp.com</a></p>
<p>..m</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/an-introductory-tour-of-openstack-cloud-messaging-as-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStack Community Weekly Newsletter (May 10-17)</title>
		<link>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-10-17/</link>
		<comments>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-10-17/#comments</comments>
		<pubDate>Fri, 17 May 2013 21:53:24 +0000</pubDate>
		<dc:creator>Stefano Maffulli</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Newsletter]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4208</guid>
		<description><![CDATA[OpenStack Compute (Nova) Roadmap for Havana The Havana design summit was held mid-April.  Since then the Nova team has been documenting the Havana roadmap and going full speed ahead on development of these features.  The list of features that developers have committed to completing for the Havana release is tracked using blueprints on Launchpad. At [...]]]></description>
				<content:encoded><![CDATA[<h3><a href="http://russellbryantnet.wordpress.com/2013/05/13/openstack-compute-nova-roadmap-for-havana/">OpenStack Compute (Nova) Roadmap for Havana</a></h3>
<p>The Havana design summit was held mid-April.  Since then the Nova team has been documenting the Havana roadmap and going full speed ahead on development of these features.  The list of features that developers have committed to completing for the Havana release is tracked using <a href="https://blueprints.launchpad.net/nova/havana">blueprints on Launchpad</a>. At the time of writing, there are 74 blueprints listed that cover a wide range of development efforts. <a href="http://russellbryantnet.wordpress.com/">Russell Bryant</a>, Nova Tech Lead, highlights some of them.</p>
<h3><a href="http://engineering.cloudscaling.com/stacker-voices-thierry-carrez-openstack-foundation/">Stacker Voices: Thierry Carrez, OpenStack Foundation</a></h3>
<p>Thierry Carrez handles release management for the OpenStack Foundation and is chair of the project’s Technical Committee. Thierry was involved with the earliest incarnations of OpenStack while at Rackspace. Cloudscaling&#8217;s team caught up with him at the OpenStack Summit in Portland to get Thierry’s insights into the release cycle, governance and his wish list for the project.</p>
<h3><a href="http://www.enovance.com/fr/blog/5653/swiftsync-a-way-to-synchronize-two-swift-clusters-2">Swiftsync – A way to synchronize two swift clusters</a></h3>
<p>Enovance was asked to migrate and synchronize two swift clusters in order to provide a customer a way to handle a swift migration easily. For that they started a project called <a href="https://github.com/enovance/swiftsync">swiftsync</a> hosted in github.</p>
<h2>Tips &#8216;n Tricks</h2>
<ul>
<li>By <a href="http://ceph.com/">Ceph</a>: <a href="http://ceph.com/dev-notes/incremental-snapshots-with-rbd/">Incremental Snapshots with RBD</a></li>
<li>By <a href="http://www.enovance.com/">eNovance</a>: <a href="http://www.enovance.com/fr/blog/5653/swiftsync-a-way-to-synchronize-two-swift-clusters-2">Swiftsync – A way to synchronize two swift clusters</a></li>
<li>By <a href="http://dachary.org/">Loïc Dachary</a>: <a href="http://dachary.org/?p=1961">Disaster recovery on host failure in OpenStack</a></li>
</ul>
<h2>Security Issues</h2>
<ul>
<li><a href="http://lists.openstack.org/pipermail/openstack-announce/2013-May/000102.html">Nova fails to verify image virtual size (CVE-2013-2096) </a></li>
</ul>
<h2>OpenStack In The Wild</h2>
<p>A new section of the weekly newsletter dedicated to users of OpenStack. If you want to showcase how OpenStack helps you (or you know somebody that uses OpenStack) please let us know: <a href="mailto:communitymngr@openstack.org">email</a>, <a href="http://twitter.com/openstack">twitter</a>, <a href="http://www.reddit.com/r/openstack/">reddit</a> or <a href="http://en.wikipedia.org/wiki/IP_over_Avian_Carriers">avian carrier</a> will do).</p>
<ul>
<li><a href="http://www.dailyhostnews.com/canadian-web-hosting-to-launch-public-cloud-built-on-openstack-software?utm_source=feedburner&amp;utm_medium=twitter&amp;utm_campaign=Feed%3A+DailyHostNews+%28DailyHostNews%29">Canadian Web Hosting to Launch Public Cloud Built on OpenStack Software</a></li>
</ul>
<h2>Upcoming Events</h2>
<ul>
<li><a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">OpenStack Dublin Meetup</a> May 22, 2013 &#8211; Dublin, Ireland <a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/Openstack-London/events/116975682/" target="_blank">3rd London OpenStack Meetup</a> May 23, 2013 &#8211; London, UK <a href="http://www.meetup.com/Openstack-London/events/116975682/" target="_blank">Details</a></li>
<li><a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">OpenStack DACH Day</a> May 24, 2013 &#8211; Berlin Fairgrounds <a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">OpenStack India Meetup</a> May 26, 2013 &#8211; Bangalore, India at Anuta Network <a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">Details</a></li>
<li><a href="http://www.openstack-israel.org/" target="_blank">OpenStack Israel</a> May 27, 2013 &#8211; Tel-Aviv, Israel <a href="http://www.openstack-israel.org/" target="_blank">Details</a></li>
<li><a href="http://aosug.openstack.org.au/" target="_blank">Australian OpenStack User Group tri-city Meetup</a> May 27, 2013 – Australia <a href="http://aosug.openstack.org.au/" target="_blank">Details</a></li>
<li><a href="http://www.cebit.com.au/" target="_blank">OpenStack at CeBit Australia</a> May 28 &#8211; 30, 2013 &#8211; Sidney, Australia <a href="http://www.cebit.com.au/" target="_blank">Booth in Hall 4</a></li>
<li><a href="http://openstackceeday.com/" target="_blank">OpenStack CEE Day</a> May 29, 2013 &#8211; Budapest, Hungary <a href="http://openstackceeday.com/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Building an OpenStack Cloud</a> May 30, 2013 &#8211; Chicago, IL <a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">OpenStack meeting in Munich</a> Jun 11, 2013 &#8211; Munich, Germany <a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">Details</a></li>
<li><a href="http://www.datacenterdynamics.com/fr/conferences/2013/paris-2013" target="_blank">DatacenterDynamics Converged</a> Jun 11, 2013 &#8211; Paris, France <a href="http://www.datacenterdynamics.com/fr/conferences/2013/paris-2013" target="_blank">Details</a></li>
<li><a href="http://event.gigaom.com/structure/" target="_blank">GigaOM Structure</a> Jun 19 &#8211; 20, 2013 &#8211; San Francisco, CA <a href="http://event.gigaom.com/structure/" target="_blank">Details</a></li>
<li><a href="https://wiki.openstack.org/wiki/DevCamp/EssenGermany2013" target="_blank">OpenStack DevCamp Essen</a> Jun 21 &#8211; 23, 2013 &#8211; Essen, Germany <a href="https://wiki.openstack.org/wiki/DevCamp/EssenGermany2013" target="_blank">Details</a></li>
<li><a href="http://2013.pycon-au.org/programme/schedule/friday" target="_blank">PyCon Australia – OpenStack Miniconf</a> Jul 05, 2013 &#8211; Hobart, Australia <a href="http://2013.pycon-au.org/programme/schedule/friday" target="_blank">Details</a></li>
<li><a href="http://www.oscon.com/oscon2013" target="_blank">OSCON 2013</a> Jul 22 &#8211; 26, 2013 &#8211; Portland, OR <a href="http://www.oscon.com/oscon2013" target="_blank">Details</a></li>
</ul>
<h2>Other News</h2>
<ul>
<li><a href="http://robhirschfeld.com/2013/05/17/crowbar-cuts-openstack-grizzly/">Crowbar cuts OpenStack Grizzly (“pebbles”) branch &amp; seeks community testing</a></li>
<li><a href="http://www.mirantis.com/blog/segregation-in-grizzly-availability-zones-versus-host-aggregates/">OpenStack Grizzly Webinar Preview: Availability Zones vs. Host Aggregates</a></li>
<li><a href="http://kashyapc.wordpress.com/2013/05/16/nested-virtualization-kvm-intel-with-vmcs-shadowing/">Nested Virtualization — KVM, Intel, with VMCS Shadowing</a></li>
<li><a href="http://dachary.org/?p=1978">OpenStack Upstream University training</a></li>
<li><a href="https://www.berrange.com/posts/2013/05/13/a-new-configurable-cgroups-layout-for-libvirt-with-qemu-kvm-lxc/">A new (configurable) cgroups layout for libvirt with QEMU, KVM &amp; LXC</a></li>
<li><a name="9048"></a><a href="http://lists.openstack.org/pipermail/openstack-dev/2013-May/009048.html">How to guarantee success of the I Design Summit in HK </a></li>
<li>OpenStack Project Meeting:<a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-05-14-21.00.html">Summary</a> and <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-05-14-21.00.log.html">full logs</a>.</li>
</ul>
<h2>Welcome New Developers</h2>
<ul>
<li>Hugh Saunders</li>
<li>Bruno Semperlotti</li>
<li>YAMAMOTO Takashi, VALinux</li>
<li>Fujioka Yuuichi, NEC</li>
</ul>
<h2>Got answers?</h2>
<p><a href="https://ask.openstack.org/">Ask OpenStack</a> is the go-to destination for OpenStack users. Interesting questions waiting for answers:</p>
<ul>
<li><a href="https://ask.openstack.org/question/1315/trying-to-run-pki_setup-for-keystone-however-the-command-doesnt-exist/">Trying to run pki_setup for keystone however the command doesn&#8217;t exist</a></li>
<li><a href="https://ask.openstack.org/question/1313/authentication-credentials-are-being-ignored/">Authentication credentials are being ignored</a></li>
<li><a href="https://ask.openstack.org/question/1311/instance-failed-to-start-qemu-img-could-not-openno-such-file-or-directory/">Instance failed to start &#8220;qemu-img: Could not open&#8230;No such file or directory&#8221;</a></li>
<li><a href="https://ask.openstack.org/question/1302/how-to-attach-volume-for-instance-iso-on-devhda/">How to attach volume for instance (iso) on /dev/hda</a></li>
<li><a href="https://ask.openstack.org/question/1282/can-openstack-choose-the-physical-resources-to-boot-a-vm/">Can Openstack Choose the physical resources to boot a VM?</a></li>
<li><a href="https://ask.openstack.org/question/1258/what-causes-cloud-init-nonet-gave-up-waiting-for-a-network-device/">What causes &#8220;cloud-init-nonet gave up waiting for a network device&#8221;?</a></li>
</ul>
<p><em>The weekly newsletter is a way for the community to learn about all the various activities occurring on a weekly basis. If you would like to add content to a weekly update or have an idea about this newsletter, please leave a comment.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-10-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStack Community Weekly Newsletter (May 3 &#8211; 10)</title>
		<link>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-3-10/</link>
		<comments>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-3-10/#comments</comments>
		<pubDate>Fri, 10 May 2013 23:44:50 +0000</pubDate>
		<dc:creator>Stefano Maffulli</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Newsletter]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4204</guid>
		<description><![CDATA[OpenStack 2013.1.1 released 2013.1.1 release, the latest in the series of stable releases. These releases are bugfix updates to Grizzly and are intended to be relatively risk free with no intentional regressions or API changes. A total of 85 bugs have been fixed in this release. OpenStack Grizzly documentation released We have released a version [...]]]></description>
				<content:encoded><![CDATA[<h3><a href="http://lists.openstack.org/pipermail/openstack-announce/2013-May/000100.html">OpenStack 2013.1.1 released </a></h3>
<p>2013.1.1 release, the latest in the series of stable releases. These releases are bugfix updates to Grizzly and are intended to be relatively risk free with no intentional regressions or API changes. A total of 85 bugs have been fixed in this release.</p>
<h3><a href="http://lists.openstack.org/pipermail/openstack-announce/2013-May/000097.html">OpenStack Grizzly documentation released</a></h3>
<p>We have released a version of the OpenStack official documentation for grizzly and it is now available at <a href="http://docs.openstack.org/grizzly.">http://docs.openstack.org/grizzly.</a> We continue to update docs through our continuous publishing process so feedback is always welcome. If you have questions about how OpenStack documentation is maintained or would like to get involved, see <a href="http://wiki.openstack.org/Documentation/HowTo.">http://wiki.openstack.org/Documentation/HowTo.</a> We had nearly 80 contributors to the documentation for the Grizzly release. Thanks to everyone who helped create and maintain accurate information for OpenStack.</p>
<h3><a href="http://lists.openstack.org/pipermail/community/2013-May/000252.html">Guidelines for answering question on Ask</a></h3>
<p>It&#8217;s time we start collecting guidelines for the moderators so we keep having a very informative tool, with consistently good questions and answers. This wiki page hosts the draft of the Guidelines for Moderators <a href="https://wiki.openstack.org/wiki/Community/AskModerators">https://wiki.openstack.org/wiki/Community/AskModerators</a>. Comments welcome before they&#8217;re moved to their natural home on Ask OpenStack.</p>
<h3><a href="http://www.openstack.org/blog/2013/05/discussions-at-breakfast-with-the-board-openstack-april-2013-summit/">Discussions at Breakfast with the Board – OpenStack April 2013 Summit</a></h3>
<p>The summary written by OpenStack Foundation&#8217;s Board of Directors of the things discussed during the Breakfast with the Bard in Portland, ranging from marketing to wifi, transparency to elections to what makes a contribution. A must read.</p>
<h3><a href="http://sebastien-han.fr/blog/2013/05/07/use-existing-rbd-images-and-put-it-into-glance/">Use existing RBD images and put it into Glance</a></h3>
<p>What if Glance, the OpenStack Image Service, was capable of converting images within its store, say from QCOW2 image to a RAW? Waiting for this capability to be added, <a href="http://sebastien-han.fr/">Sébastien Han</a> plays with a scenario where you have a KVM cluster backed by a Ceph Cluster and your CTO wants you to migrate the whole environment to OpenStack. Science fiction in action.</p>
<h2>Security Issues</h2>
<ul>
<li><a href="http://lists.openstack.org/pipermail/openstack-announce/2013-May/000098.html">Nova uses insecure keystone middleware tmpdir by default (CVE-2013-2030) </a></li>
<li><a href="http://lists.openstack.org/pipermail/openstack-announce/2013-May/000099.html">Keystone tokens not immediately invalidated when user is deleted (CVE-2013-2059)</a></li>
</ul>
<h2>OpenStack In The Wild</h2>
<p>A new section of the weekly newsletter dedicated to users of OpenStack. If you want to showcase how OpenStack helps you (or you know somebody that uses OpenStack) please let us know: <a href="mailto:communitymngr@openstack.org">email</a>, <a href="http://twitter.com/openstack">twitter</a>, <a href="http://www.reddit.com/r/openstack/">reddit</a> or <a href="http://en.wikipedia.org/wiki/IP_over_Avian_Carriers">avian carrier</a> will do). More content from Portland Summit:</p>
<ul>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/using-openstack-in-a-traditional-hosting-environment">Using OpenStack In A Traditional Hosting Environment</a> by EIG/Bluehost</li>
</ul>
<h2>Upcoming Events</h2>
<ul>
<li><a href="http://www.meetup.com/openstack-atlanta/events/107062982/" target="_blank">OpenStack Atlanta Meetup</a> May 16, 2013 &#8211; Atlanta, USA <a href="http://www.meetup.com/openstack-atlanta/events/107062982/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">OpenStack Dublin Meetup</a> May 22, 2013 &#8211; Dublin, Ireland <a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/Openstack-London/events/116975682/" target="_blank">3rd London OpenStack Meetup</a> May 23, 2013 &#8211; London, UK <a href="http://www.meetup.com/Openstack-London/events/116975682/" target="_blank">Details</a></li>
<li><a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">OpenStack DACH Day</a> May 24, 2013 &#8211; Berlin Fairgrounds <a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">OpenStack India Meetup</a> May 26, 2013 &#8211; Bangalore, India at Anuta Network <a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">Details</a></li>
<li><a href="http://www.openstack-israel.org/" target="_blank">OpenStack Israel</a> May 27, 2013 &#8211; Tel-Aviv, Israel <a href="http://www.openstack-israel.org/" target="_blank">Details</a></li>
<li><a href="http://aosug.openstack.org.au/" target="_blank">Australian OpenStack User Group tri-city Meetup</a> May 27, 2013 – Australia <a href="http://aosug.openstack.org.au/" target="_blank">Details</a></li>
<li><a href="http://www.cebit.com.au/" target="_blank">OpenStack at CeBit Australia</a> May 28 &#8211; 30, 2013 &#8211; Sidney, Australia <a href="http://www.cebit.com.au/" target="_blank">Booth in Hall 4</a></li>
<li><a href="http://openstackceeday.com/" target="_blank">OpenStack CEE Day</a> May 29, 2013 &#8211; Budapest, Hungary <a href="http://openstackceeday.com/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Building an OpenStack Cloud</a> May 30, 2013 &#8211; Chicago, IL <a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">OpenStack meeting in Munich</a> Jun 11, 2013 &#8211; Munich, Germany <a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">Details</a></li>
<li><a href="http://event.gigaom.com/structure/" target="_blank">GigaOM Structure</a> Jun 19 &#8211; 20, 2013 &#8211; San Francisco, CA <a href="http://event.gigaom.com/structure/" target="_blank">Details</a></li>
<li><a href="https://wiki.openstack.org/wiki/DevCamp/EssenGermany2013" target="_blank">OpenStack DevCamp Essen</a> Jun 21 &#8211; 23, 2013 &#8211; Essen, Germany <a href="https://wiki.openstack.org/wiki/DevCamp/EssenGermany2013" target="_blank">Details</a></li>
<li><a href="http://2013.pycon-au.org/programme/schedule/friday" target="_blank">PyCon Australia – OpenStack Miniconf</a> Jul 05, 2013 &#8211; Hobart, Australia <a href="http://2013.pycon-au.org/programme/schedule/friday" target="_blank">Details</a></li>
<li><a href="http://www.oscon.com/oscon2013" target="_blank">OSCON 2013</a> Jul 22 &#8211; 26, 2013 &#8211; Portland, OR <a href="http://www.oscon.com/oscon2013" target="_blank">Details</a></li>
</ul>
<h2>Other News</h2>
<ul>
<li><a href="http://julien.danjou.info/blog/2013/rant-about-github-pull-request-workflow-implementation">Rant about Github pull-request workflow implementation</a></li>
<li><a href="http://lists.openstack.org/cgi-bin/mailman/private/marketing/2013-May/000054.html">Open Marketing Meeting &#8211; May 15 </a></li>
<li><a href="http://markmail.org/message/h3k6tmoatgbfe5an">Fixes and upgrades to Search on OpenStack Activity Board</a></li>
<li>OpenStack Project Meeting: <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-05-07-21.02.html">Summary</a> and <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-05-07-21.02.log.html">full logs</a>.</li>
</ul>
<h2>Welcome New Developers</h2>
<ul>
<li>Matt Wagner, Redhat</li>
</ul>
<h2>Got answers?</h2>
<p><a href="https://ask.openstack.org/">Ask OpenStack</a> is the go-to destination for OpenStack users. Interesting questions waiting for answers:</p>
<ul>
<li><a href="https://ask.openstack.org/question/992/can-i-still-use-nova-network-in-grizzly/">Can I still use nova-network in Grizzly?</a></li>
<li><a href="https://ask.openstack.org/question/261/vm-stops-boot-right-after-initializing-tun/">VM stops boot right after initializing tun</a></li>
<li><a href="https://ask.openstack.org/question/661/why-do-i-get-could-not-find-token-error-using-swift-with-s3-api/">Why do I get &#8220;Could not find token&#8221; error using Swift with s3 API?</a></li>
<li><a href="https://ask.openstack.org/question/534/how-do-i-effectively-disableenable-a-tenant-using-the-api/">How do I effectively disable/enable a tenant using the API?</a></li>
<li><a href="https://ask.openstack.org/question/815/how-do-i-debug-nova-service-with-eclipse-and-pydev/">How do I debug Nova service with eclipse and pydev</a></li>
<li><a href="https://ask.openstack.org/question/963/what-causes-error-service-n-net-is-not-running-when-running-stacksh/">What causes error &#8220;service n-net is not running&#8221; when running stack.sh?</a></li>
<li><a href="https://ask.openstack.org/question/989/how-to-list-server-id-using-python-novaclient-python-api/">How to list Server Id using python-novaclient Python API?</a></li>
<li><a href="https://ask.openstack.org/question/947/is-it-possible-to-modify-a-network-while-in-use/">Is it possible to modify a network while in use?</a></li>
<li><a href="https://ask.openstack.org/question/945/how-to-set-up-metadata-service-on-a-flat-network/">How to set up metadata service on a flat network?</a></li>
<li><a href="https://ask.openstack.org/question/910/keystone-remove_user-command-removing-all-users-not-just-the-specified-ones/">Keystone remove_user command removing ALL users not just the specified ones</a></li>
<li><a href="https://ask.openstack.org/question/815/how-do-i-debug-nova-service-with-eclipse-and-pydev/">How do I debug Nova service with eclipse and pydev</a></li>
<li><a href="https://ask.openstack.org/question/813/enable_tenant_tunnels-ovs-version-check-in-compute-fails/">ENABLE_TENANT_TUNNELS, OVS Version check in Compute fails</a></li>
<li><a href="https://ask.openstack.org/question/695/how-to-make-openstack_auth-the-default-authentication-backend-for-django-admin/">How to make openstack_auth the default authentication backend for django admin?</a></li>
</ul>
<p><em>The weekly newsletter is a way for the community to learn about all the various activities occurring on a weekly basis. If you would like to add content to a weekly update or have an idea about this newsletter, please leave a comment.</em></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-may-3-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discussions at Breakfast with the Board &#8211; OpenStack April 2013 Summit</title>
		<link>http://www.openstack.org/blog/2013/05/discussions-at-breakfast-with-the-board-openstack-april-2013-summit/</link>
		<comments>http://www.openstack.org/blog/2013/05/discussions-at-breakfast-with-the-board-openstack-april-2013-summit/#comments</comments>
		<pubDate>Wed, 08 May 2013 16:09:06 +0000</pubDate>
		<dc:creator>OpenStack Board</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Governance]]></category>
		<category><![CDATA[OpenStack Update]]></category>
		<category><![CDATA[Summit]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4186</guid>
		<description><![CDATA[It is an exciting time to be part of the OpenStack community.  It was a great conference with lots of momentum around OpenStack.  The speed and growth of the community is amazing. Tuesday morning during the Summit, we continued the tradition of Breakfast With The Board (BwtB).  We wish to thank all who participated.  As board members we very much appreciated your comments of [...]]]></description>
				<content:encoded><![CDATA[<p>It is an exciting time to be part of the OpenStack community.  It was a great conference with lots of momentum around OpenStack.  The speed and growth of the community is amazing.</p>
<p>Tuesday morning during the Summit, we continued the tradition of Breakfast With The Board (BwtB).  We wish to thank all who participated.  As board members we very much appreciated your comments of support, feedback and ideas.  We heard many positive and encouraging comments  and participated in many lively discussions.</p>
<p>Through this writeup we would like to share what we heard.   There was a wide variety of topics discussed, including:</p>
<p><strong>Summit Design Session Growing Pains</strong><br />
Despite a variety of changes tested and introduced over the past Summits, accommodating all who wish to participate in the Summit design sessions continue to exhibit growing pains.  The design sessions are “intended to be small, focused developer working sessions where the roadmap is set by active contributors on the project.”  With such a description it is easy to see why so many business persons, users, and developers want to participate or listen in. Yet the fear is that a varied large audience will decrease session output.</p>
<p>Many ideas were voiced at the BwtB as to how to address the issue, including room moderators, attendee prioritization, seating arrangements and session segregation.</p>
<p><strong>“Scotty we need more power er WIFI”</strong><br />
While the conference survey will prioritize on  what items will be most relevant to improve for the next Summit, one of the vocal suggestion at the BwtB was the never ending need for more WIFI.  We techies live on WIFI.</p>
<p><strong>Who the heck is&#8230;</strong><br />
Leading the list for reasons to attend the Summit is to simply meet people we work with on IRC and other community channels.  A simple suggestion was made that we add IRC nicks in a nice big font to the front and back of the conference badges. 50% of the time you see the back of someone&#8217;s badge and don&#8217;t know who they are.</p>
<p><strong>Traveling to the Fall Summit</strong><br />
For those traveling to the fall Summit from the North America, concerns over prohibitive travel costs was raised.  Determining a Summit location is made up of many different factors.  Cost of travel being one.    A Summit location effects attendance, whether it be in Portland or Hong Kong.  Balancing that cost can be tricky.   The planning committee investigations concluded that attendees will find that the travel rates will not be the feared prohibitive if they do some research and book early.</p>
<p><strong>Driving Priorities</strong><br />
Several discussions evolved around the idea of how customer priorities are injected into each projects focus and features. Typically in a corporate development model such interests are captured and formulated into the development model through Product Owners (PO) or Product Managers (PM).  How does this map to the OpenStack model?  Which is easily generalized to how does this map to the open source world?</p>
<p>At the BwtB, several of the discussions converged on the notion of contribution.  Contribution either in the form of code, leadership or voice.  One company simply cannot pretend to make choices for resources in another company. At most you can find other resources from a  company which share a problem you are helping describe and therefore solve.</p>
<p>A familiar saying in the open source world is “scratch the itch”.  It is this saying which has driven open source developers for years.  If you find a need that nothing out there can meet, write a solution yourself or better yet voice the need to help find those who share in the need and write a solution together contributing in ways that leverage your experience and expertise or providing support to those who can contribute for you.</p>
<p><strong>Big Vision</strong><br />
Also discussed at the BwtB was the notion of having the TC play more of a role across the various projects, for things like security and API versioning, aligning and setting direction across the groups. Citing the need for the TC (or someone at least) to give more cross project consideration for:<br />
API compatibility and consistency<br />
architectural consistency<br />
security<br />
Input from Users to guide our path</p>
<p><strong>Align the Doc</strong><br />
Opinions voiced concerns that the documentation lags the implementations.  So how do we  make the OpenStack documentation more up-to-date and improve quality and timelines?  That was the question raised by attendees at the BwtB.  Offered suggestions included a requirement for documentation changes to be checked in concurrent with the code, rather than just setting a flag that the doc&#8217;s might be effected.</p>
<p><strong>What comprises OpenStack?</strong><br />
A couple of tables discussed the current progress around the current Core/Integrated/Incubated framework with input on moving forward; people seem to prefer the kernel/drivers analogy. There is confusion regarding the new approach to core-integrated-incubation,  what the differences are, who gets seats on the TC, etc.  Early and continued discussions at Technical Committee and Board on this are important for next phases of the effort. It is important  to ensure that the TC and Board sign off on all steps with formal statements by the foundation when we arrive at any and all conclusions.</p>
<p><strong>Interoperability</strong><br />
There is a lot of interop interest. Folks at the BwtB seemed to be mostly happy with the refstack approach. They voiced opinions about whether API-based interop or same-codebase interop is appropriate in various projects and for having verification teams for plug-ins.</p>
<p><strong>Marketing OpenStack</strong><br />
Where does OpenStack as the data center operating system model go?  How to support that?  Marketing discussions ranged across several of the tables.  Including a conversation at one of the tables  on how to best explain OpenStack to CIO/IT Directors. Participants in the discussion felt that the video overviews available on the OpenStack website as well as the user stories presented at the Summit Keynotes were of great help.</p>
<p>Others pondered why FUD is generated by open source competition with a  lack of sense of those for who their competition really should be (proprietary software).</p>
<p>And others voiced concern over perceptions around OpenStack.  These perceptions include, complexity, talent shortages, security gaps and that it takes too many people to run OpenStack.  Such perceptions create a barrier to adoption.</p>
<p><strong>Transparency</strong><br />
The Board at its February meeting, launch a committee to improve transparency and foster collaboration between the foundation members and members of the board, technical committee, user committee and other committees.  Members of the committee took the opportunity to discuss, at their tables, the committee ideas and efforts.  Everyone is all for transparency and seeking a balance between transparency and compromising the strategic position of the project was accepted as an important consideration. The ombudsman and staggered release were seen as valid solutions.</p>
<p>Attendees also voiced the importance for direct participation within project processes.  It is important that the TC and board to listen to what the project have to say.</p>
<p><strong>Elections</strong><br />
The Board at its February meeting also launched an effort to improve the Individual member election process.  The board members engaged in this effort took the opportunity to gather feedback at the BwtB on the ideas and efforts underway.  Many were pleased that a schedule for implementation of changes is being set and were pleased with the efforts so far.</p>
<p><strong>Conclusion</strong><br />
As you can see there was a wide range of topics raised and discussed.  Each of which could be worthy of a full writeup on its own. As a board we appreciate the input.  We will delve into the issues further and will use this input to guide the prioritization of our efforts.  So again thank you for your participation. We look forward to the next BwtB at the fall Summit.</p>
<p>Regards,</p>
<p>OpenStack Board of Directors</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/discussions-at-breakfast-with-the-board-openstack-april-2013-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStack Community Weekly Newsletter (Apr 25 &#8211; May 3)</title>
		<link>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-apr-25-may-3/</link>
		<comments>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-apr-25-may-3/#comments</comments>
		<pubDate>Fri, 03 May 2013 23:48:02 +0000</pubDate>
		<dc:creator>Stefano Maffulli</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Newsletter]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4182</guid>
		<description><![CDATA[Introducing Murano: Bringing Windows Environments to OpenStack In response to growing demand for deploying and running Windows based applications on OpenStack cloud, the team at Mirantis started Murano: a native OpenStack component that enables fast provisioning and operation of Windows Environments on demand. Who Wrote OpenStack Grizzly Docs? Sneaking a peek at the numbers for [...]]]></description>
				<content:encoded><![CDATA[<h3><a href="http://www.mirantis.com/blog/introducing-murano-bringing-windows-environment-to-openstack/">Introducing Murano: Bringing Windows Environments to OpenStack</a></h3>
<p>In response to growing demand for deploying and running Windows based applications on OpenStack cloud, the team at Mirantis started <a href="https://wiki.openstack.org/wiki/Murano">Murano</a>: a native OpenStack component that enables fast provisioning and operation of Windows Environments on demand.</p>
<h3><a href="http://justwriteclick.com/2013/04/26/who-wrote-openstack-grizzly-docs/">Who Wrote OpenStack Grizzly Docs?</a></h3>
<p>Sneaking a peek at the numbers for documentation along with the code should show us pointers about docs keeping up with code. <a href="http://justwriteclick.com/">Anne Gentle</a> dives into the documentation with data and insights.</p>
<h3><a href="https://wiki.openstack.org/wiki/Release_Naming#.22I.22_release_cycle_naming">&#8220;I&#8221; release cycle naming</a></h3>
<p>The next OpenStack summit will happen in Hong Kong. That creates a pretty challenging naming problem, since there is no word starting with &#8220;i&#8217; in classic transliteration of Chinese words. So the Technical Committee is willing to bend the rules <i>a little</i> to extend the range of candidates&#8230; Feel free to add suggestions to the list on the wiki.</p>
<h3><a href="http://engineering.cloudscaling.com/stacker-voices-monty-taylor-hp/">Stacker Voices: Monty Taylor, HP</a></h3>
<p><a href="http://engineering.cloudscaling.com/">Cloudscaling Engineering</a> talked with Monty Taylor of HP (reaching rockstar status also with a <a href="http://www.wired.com/">wired.com</a> <a href="http://www.wired.com/wiredenterprise/2013/04/new-hackers-taylor/">profile</a> this week) at the OpenStack Summit in Portland. Monty leads the CI (continuous innovation) project for OpenStack. In that role, he and his group have built testing systems that have made it possible for the OpenStack project to scale from a few dozen contributors for the Bexar release to more than 700 developers now pushing hundreds of patches daily to OpenStack. Watch the video <a href="http://www.youtube.com/watch?v=eqw4zxqPelc" target="_blank">on YouTube</a>.</p>
<h3><a href="http://markmail.org/message/kjv4kry67732nawb">A little tracing hack</a></h3>
<p>Timothy Daly at Yahoo! added metrics and tracing for OpenStack and released <a href="https://github.com/timjr/tomograph">tomograph</a>: a tool to see what and how OpenStack is doing behind the curtains.</p>
<h3><a href="http://www.openstack.org/blog/2013/05/contribute-to-openstack-activity-board/">Contribute to OpenStack Activity Board</a></h3>
<p>We’ve released the <a href="http://activity.openstack.org/data/display/WIKIDS/Home">complete documentation</a> for <a href="http://activity.openstack.org/data/">OpenStack Insights</a>, with binaries and source code downloadable from <a href="https://sourceforge.net/projects/wikidsopenstack">Sourceforge</a> while the <a href="http://activity.openstack.org/dash/">OpenStack Dash</a> tools are the vanilla <a href="http://metricsgrimoire.github.io/">MetricsGrimoire</a> set <a href="https://github.com/MetricsGrimoire">hosted on github</a>. The code is free as in freedom so you’re welcome to play with it.</p>
<h3><a href="http://cloudystuffhappens.blogspot.com/2013/04/how-to-run-pylint-with-few-false.html">How to run pylint with few false positives</a></h3>
<p>Testing your python code can get complex and with pylint, you <em>will </em>see false positives, meaning it will complain some lines as bugs that are actually correct. lintstack is designed to address this problem: <strong>reduce false positives from pylint as much as possible without sacrificing accuracy</strong>. <a href="http://cloudystuffhappens.blogspot.com/search/label/openstack">Yun Mao</a> describes how lintstack works.</p>
<h2>Report from Previous Events</h2>
<ul>
<li>By <a href="http://aababilov.wordpress.com/">Alessio Ababilov</a>: <a href="http://aababilov.wordpress.com/2013/05/02/openstack-summit-april-2013-a-first-experience/">OpenStack Summit April 2013: a First Experience</a></li>
<li>By <a href="http://www.buildcloudstorage.com/">Amar Kapadia</a>: <a href="http://blogs.evault.com/cloud-connected-recovery/cloud-connected-storage/openstack-swift-comes-of-age-with-the-grizzly-release/">Coming of Age of Swift </a>.</li>
</ul>
<h2>Tips and Tricks</h2>
<ul>
<li>By <a href="http://adam.younglogic.com/">Adam Young</a>: <a href="http://adam.younglogic.com/2013/05/kerberizing-postgresql-with-freeipa-for-keystone/">Kerberizing PostgreSQL with FreeIPA for Keystone</a></li>
<li>By <a href="http://giuliofidente.com/">Giulio Fidente</a>: <a href="http://giuliofidente.com/2013/04/openstack-cinder-add-more-volume-nodes.html">OpenStack Cinder &#8211; Add more volume nodes</a></li>
<li>By <a href="http://blog.flaper87.org/">Flavio Percoco</a>: <a href="http://blog.flaper87.org/post/517c3ea50f06d3497faffe5a/">Dynamic TTL Collection in Mongodb for Marconi</a></li>
</ul>
<h2>OpenStack In The Wild</h2>
<p>A new section of the weekly newsletter dedicated to users of OpenStack. If you want to showcase how OpenStack helps you (or you know somebody that uses OpenStack) please let us know: <a href="mailto:communitymngr@openstack.org">email</a>, <a href="http://twitter.com/openstack">twitter</a>, <a href="http://www.reddit.com/r/openstack/">reddit</a> or <a href="http://en.wikipedia.org/wiki/IP_over_Avian_Carriers">avian carrier</a> will do). Meanwhile watch the keynotes from Portland Summit:</p>
<ul>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/keynote-bloomberg-user-spotlight">Bloomberg User Spotlight</a></li>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/keynote-comcast-user-spotlight">Keynote: Comcast User Spotlight</a></li>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/keynote-best-buy-user-spotlight">Keynote: Best Buy User Spotlight</a></li>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/keynote-clouds-in-high-energy-physics">Keynote: Clouds in High Energy Physics</a></li>
<li><a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/keynote-openstack-at-the-national-security-agency-nsa">Keynote: OpenStack at the National Security Agency (NSA)</a></li>
</ul>
<h2>Upcoming Events</h2>
<ul>
<li><a href="http://www.meetup.com/OpenStack-DACH/events/108876542/" target="_blank">OpenStack meeting in Cologne</a> May 04, 2013 &#8211; Cologne, Germany <a href="http://www.meetup.com/OpenStack-DACH/events/108876542/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/openstack-atlanta/events/107062982/" target="_blank">OpenStack Atlanta Meetup</a> May 16, 2013 &#8211; Atlanta, USA <a href="http://www.meetup.com/openstack-atlanta/events/107062982/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">OpenStack Dublin Meetup</a> May 22, 2013 &#8211; Dublin, Ireland <a href="http://www.meetup.com/OpenStack-Ireland/events/116567022/" target="_blank">Details</a></li>
<li><a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">OpenStack DACH Day</a> May 24, 2013 &#8211; Berlin Fairgrounds <a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">OpenStack India Meetup</a> May 26, 2013 &#8211; Bangalore, India at Anuta Network <a href="http://www.meetup.com/Indian-OpenStack-User-Group/events/117132352/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/IGTCloud/events/99146542/" target="_blank">OpenStack Israel</a> May 27, 2013 &#8211; Tel-Aviv, Israel <a href="http://www.openstack-israel.org/" target="_blank">Details</a></li>
<li><a href="http://www.openstack.org/" target="_blank">OpenStack CEE Day</a> May 29, 2013 – Budapest <a href="http://www.openstack.org/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Building an OpenStack Cloud</a> May 30, 2013 &#8211; Chicago, IL <a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">OpenStack meeting in Munich</a> Jun 11, 2013 &#8211; Munich, Germany <a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">Details</a></li>
<li><a href="http://event.gigaom.com/structure/" target="_blank">GigaOM Structure</a> Jun 19 &#8211; 20, 2013 &#8211; San Francisco, CA <a href="http://event.gigaom.com/structure/" target="_blank">Details</a></li>
<li><a href="http://www.oscon.com/oscon2013" target="_blank">OSCON 2013</a> Jul 22 &#8211; 26, 2013 &#8211; Portland, OR <a href="http://www.oscon.com/oscon2013" target="_blank">Details</a></li>
</ul>
<h2>Other News</h2>
<ul>
<li>A brief introduction to <a href="http://www.enovance.com/fr/blog/5641/keystone-pki-tokens">Keystone and PKI Tokens</a></li>
<li><a href="http://blog.flaper87.org/post/517da0e10f06d35562ce7376/">Glance wants to go public</a>: the future of OpenStack Image Service</li>
<li><a href="http://secstack.org/2013/04/openstack-common-vulnerability-database/">OpenStack Common Vulnerability Database</a></li>
<li>OpenStack Project Meeting: <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-04-30-21.02.html">Summary</a> and <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-04-30-21.02.log.html">full logs</a>
<ul>
<li><i>HELP</i>: please participate to the thread that Gabriel started on <a href="http://markmail.org/message/xn7cyjskq2wznqhj">API version discovery</a></li>
</ul>
</li>
</ul>
<h2>Welcome New Developers</h2>
<ul>
<li>Shawn Hartsock, VMwware</li>
<li>David Martin, redbrick health</li>
</ul>
<h2>Got answers?</h2>
<p><a href="https://ask.openstack.org/">Ask OpenStack</a> is the go-to destination for OpenStack users. Interesting questions waiting for answers:</p>
<ul>
<li><a href="https://ask.openstack.org/question/758/openstack-tries-to-use-cachenone-when-using-glusterfs-when-it-should-be-writethrough/">openstack tries to use cache=none when using glusterfs, when it should be writethrough</a></li>
<li><a href="https://ask.openstack.org/question/669/ceilometer-binapitestcase-fails-with-503-error-connecting-to-localhost/">Ceilometer BinApiTestCase fails with 503 error connecting to localhost</a></li>
<li><a href="https://ask.openstack.org/question/661/why-do-i-get-could-not-find-token-error-using-swift-with-s3-api/">Why do I get &#8220;Could not find token&#8221; error using Swift with s3 API?</a></li>
<li><a href="https://ask.openstack.org/question/651/what-p2v-physical-to-virtual-capabilities-does-openstack-have/">What p2v (physical to Virtual) capabilities does OpenStack have?</a></li>
<li><a href="https://ask.openstack.org/question/755/why-isnt-openstack-swift-sending-metrics-to-statsd-server/">Why isn&#8217;t OpenStack Swift sending metrics to Statsd server?</a></li>
<li><a href="https://ask.openstack.org/question/747/package-openstack-keystone-isnt-signed-with-proper-key-installing-openstack-on-centos-64/">&#8220;Package &#8216;openstack-keystone&#8217; isn&#8217;t signed with proper key&#8221; installing OpenStack on CentOS 6.4</a></li>
</ul>
<p><em>The weekly newsletter is a way for the community to learn about all the various activities occurring on a weekly basis. If you would like to add content to a weekly update or have an idea about this newsletter, please leave a comment.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/openstack-community-weekly-newsletter-apr-25-may-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Germany, Israel &amp; Hungary &#8211; OpenStack Events</title>
		<link>http://www.openstack.org/blog/2013/05/germany-israel-hungary-openstack-events/</link>
		<comments>http://www.openstack.org/blog/2013/05/germany-israel-hungary-openstack-events/#comments</comments>
		<pubDate>Thu, 02 May 2013 16:48:56 +0000</pubDate>
		<dc:creator>cmassey</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4141</guid>
		<description><![CDATA[Jonathan Bryce and a few members of the OpenStack Foundation team will be heading to Europe later this month to attend three key regional events. Jonathan and other noteworthy members of the OpenStack community will be speaking at each event. If you are in the area and would like to learn more about OpenStack or [...]]]></description>
				<content:encoded><![CDATA[<p>Jonathan Bryce and a few members of the OpenStack Foundation team will be heading to Europe later this month to attend three key regional events. Jonathan and other noteworthy members of the OpenStack community will be speaking at each event. If you are in the area and would like to learn more about OpenStack or network with others in the community – please plan to attend!</p>
<p>Help us spread the word, and we hope to see you there!</p>
<p><b>Berlin, Germany – Friday, May 24</b></p>
<p style="text-align: left;"><a href="http://openstackdach2013.eventbrite.com"><img class="alignnone size-medium wp-image-4163" alt="Screen Shot 2013-05-02 at 11.20.29 AM" src="http://www.openstack.org/blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-02-at-11.20.29-AM-300x97.png" width="300" height="97" /></a></p>
<p><a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm">OpenStack DACH Day 2013</a> will provide attendees with first­hand insights from OpenStack developers and enterprises that are successfully using OpenStack in production environments for both private and public clouds. The lineup includes speakers from industry leaders including:</p>
<ul>
<li>Jonathan Bryce, OpenStack Foundation</li>
<li>Kurt Garloff, Deutsche Telekom AG</li>
<li>Monty Taylor, HP</li>
<li>Bernhard Wiedemann &amp; Sascha Peilicke, SUSE</li>
<li>Muharem Hrnjadovic, Rackspace Cloud</li>
<li>Dr. Wolfgang Schulze, Inktank</li>
<li>Tobias Riedel, Netways</li>
<li>Dr. Udo Seidel, Amadeus Data Processing</li>
</ul>
<p>Register to Attend:</p>
<ul>
<li>When: Friday, May 24, 2013</li>
<li>Where: Berlin Fairgrounds (Messegelände unter dem Funkturm), Hall 7, as part of LinuxTag</li>
<li>Tickets: Registration is free, and there 200 tickets available at <a href="http://openstackdach2013.eventbrite.com/">http://openstackdach2013.eventbrite.com</a></li>
</ul>
<p><b>Tel Aviv, Israel – Monday, May 27</b></p>
<p><a href="http://www.openstack-israel.org"><img class="alignnone size-medium wp-image-4149" alt="Screen Shot 2013-05-02 at 10.51.04 AM" src="http://www.openstack.org/blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-02-at-10.51.04-AM-300x102.png" width="300" height="102" /></a></p>
<p>Join the OpenStack community for the third <a href="http://www.openstack-israel.org">OpenStack Israel</a> event, co-organized by OpenStack community supporters IGTCloud and GigaSpaces. The event is sponsored by the OpenStack Foundation and includes speakers from across the OpenStack community. Hear about OpenStack&#8217;s newest Grizzly release from the source, deep-dive into the Quantum network, learn about the new Cinder storage, hear what others are doing with OpenStack technology with real-life case studies from Intel, Liveperson and Alcatel, and meet the top industry leaders from IBM, HP, Rackspace, RedHat, GigaSpaces, DreamHost, Radware, Ravello, Mirantis, Cloudsoft and Hastexo.</p>
<p>Register to Attend:</p>
<ul>
<li>When: Monday, May 27, 2013</li>
<li>Where: Herzilya Arts Center at 15 Jabotinsky Street in Herzilya, Israel</li>
<li>Tickets: Registration is free, but there are only 300 tickets available, so register quickly! <a href="http://www.openstack-israel.org/">http://www.openstack-israel.org</a></li>
</ul>
<p><b>Budapest, Hungary – Wednesday, May 29</b></p>
<p><a href="http://openstackceeday.com"><img class="alignnone size-medium wp-image-4148" alt="Screen Shot 2013-05-02 at 10.50.39 AM" src="http://www.openstack.org/blog/wp-content/uploads/2013/05/Screen-Shot-2013-05-02-at-10.50.39-AM-300x117.png" width="300" height="117" /></a></p>
<p>Join us for <a href="http://openstackceeday.com">OpenStack CEE Day</a> &#8211; a large-scale one day user conference for the Central &amp; Eastern European region. Attendees will get insights to OpenStack from industry-leading keynote speakers, as well as user case studies, workshops and deep dive sessions. The OpenStack CEE Day welcomes users, prospective users, ecosystem members, partners, developers and everyone who is excited about OpenStack&#8217;s open source cloud innovation.</p>
<p>Register to Attend:</p>
<ul>
<li>When: Wednesday, May 29</li>
<li>Where: The Boscolo Hotel,1073 Budapest, Erzsébet körút 9-11</li>
<li>Tickets: Registration is now open &#8211; <a href="http://openstackceeday.eventbrite.com">http://openstackceeday.eventbrite.com</a></li>
</ul>
<p>####</p>
<p><strong>Check out the latest hastexo blog post about each of these events &#8211; <a href="http://www.hastexo.com/blogs/florian/2013/05/02/its-may-it-must-be-openstack-month"><em>It&#8217;s May. It must be OpenStack Month! </em></a></strong></p>
<p><strong>Follow <a href="https://twitter.com/OpenStack">@OpenStack </a>on Twitter</strong> <strong>for the latest news.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/germany-israel-hungary-openstack-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contribute to OpenStack Activity Board</title>
		<link>http://www.openstack.org/blog/2013/05/contribute-to-openstack-activity-board/</link>
		<comments>http://www.openstack.org/blog/2013/05/contribute-to-openstack-activity-board/#comments</comments>
		<pubDate>Thu, 02 May 2013 00:29:30 +0000</pubDate>
		<dc:creator>Stefano Maffulli</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Measurement]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4137</guid>
		<description><![CDATA[We&#8217;ve released the complete documentation for OpenStack Insights, with binaries and source code downloadable from Sourceforge while the OpenStack Dash tools are the vanilla MetricsGrimoire set hosted on github. The code is free as in freedom so you&#8217;re welcome to play with it. We&#8217;re working to put both pieces of code in the hands of [...]]]></description>
				<content:encoded><![CDATA[<p>We&#8217;ve released the <a href="http://activity.openstack.org/data/display/WIKIDS/Home">complete documentation</a> for <a href="http://activity.openstack.org/data/">OpenStack Insights</a>, with binaries and source code downloadable from <a href="https://sourceforge.net/projects/wikidsopenstack">Sourceforge</a> while the <a href="http://activity.openstack.org/dash/">OpenStack Dash</a> tools are the vanilla <a href="http://metricsgrimoire.github.io/">MetricsGrimoire</a> set <a href="https://github.com/MetricsGrimoire">hosted on github</a>. The code is free as in freedom so you&#8217;re welcome to play with it. We&#8217;re working to put both pieces of code in the hands of the OpenStack Infrastructure team soon.</p>
<p>Following up on the <a href="http://www.openstack.org/summit/portland-2013/session-videos/presentation/openstack-community-activity-board-and-metrics">long session</a> hosted during the  Summit in Portland and 1-on-1 discussions, I&#8217;ve created a new topic on the Development mailing list.  You can join the conversations about OpenStack metrics and the <a href="http://activity.openstack.org">Activity Board</a>  avoiding the high volume traffic on the Development list by subscribing only to the <strong>Metrics</strong> topic. You&#8217;ll receive only messages that have the words <em>[metrics]</em> or <em>[activity]</em> in the subject and nothing else.  Go to <a href="http://lists.openstack.org/cgi-bin/mailman/options/openstack-dev">http://lists.openstack.org/cgi-bin/mailman/options/openstack-dev</a> to subscribe and pick &#8220;<em>Metrics</em>&#8221; among the topic categories you would like to subscribe to.</p>
<p>If you want to know how the <a href="http://activity.openstack.org/">OpenStack Activity Board</a> can help you understand your team&#8217;s activities in the project, build reports, integrate data from different sources, join the <a href=" http://openstack.enterthemeeting.com/m/5QNKEX2G ">webinar we&#8217;re hosting on May 9th</a>. We&#8217;ll keep ironing out the <a href="https://bugs.launchpad.net/openstack-community/+bugs?field.tag=activityboard">known issues</a> while we think about the future of the platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/05/contribute-to-openstack-activity-board/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStack Community Weekly Newsletter (Apr 12 &#8211; 25)</title>
		<link>http://www.openstack.org/blog/2013/04/openstack-community-weekly-newsletter-apr-12-25/</link>
		<comments>http://www.openstack.org/blog/2013/04/openstack-community-weekly-newsletter-apr-12-25/#comments</comments>
		<pubDate>Fri, 26 Apr 2013 12:00:43 +0000</pubDate>
		<dc:creator>Stefano Maffulli</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Weekly]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4132</guid>
		<description><![CDATA[Special post-Summit issue OpenStack Design Summit Havana, from a Ceilometer point of view by Julien Danjou Havana Design Summit: Swift API Discussions by SwiftStack Team OpenStack Summit Portland Aftermath by Kyle Mestery OpenStack Developer Summit: Heat Followup by Duncan McGreggor Havana! By OpenStack Security Blog Portland OpenStack Summit by John Bresnahan Dan’s Partial Summary of [...]]]></description>
				<content:encoded><![CDATA[<h2>Special post-Summit issue</h2>
<ul>
<li><a href="http://julien.danjou.info/blog/2013/openstack-summit-havana-ceilometer">OpenStack Design Summit Havana, from a Ceilometer point of view</a> by <a href="http://julien.danjou.info/blog/">Julien Danjou</a></li>
<li><a href="http://swiftstack.com/blog/2013/04/24/openstack-summit-api-discussion/">Havana Design Summit: Swift API Discussions</a> by <a href="http://swiftstack.com/">SwiftStack Team</a></li>
<li><a href="http://www.siliconloons.com/?p=448">OpenStack Summit Portland Aftermath</a> by <a href="http://www.siliconloons.com/">Kyle Mestery</a></li>
<li><a href="http://technicae.cogitat.io/2013/04/openstack-developer-summit-heat-followup.html">OpenStack Developer Summit: Heat Followup</a> by <a href="http://technicae.cogitat.io/search/label/openstack">Duncan McGreggor</a></li>
<li><a href="http://secstack.org/2013/04/havana/">Havana!</a> By <a href="http://secstack.org/">OpenStack Security Blog</a></li>
<li><a href="https://tropicaldevel.wordpress.com/2013/04/22/portland-openstack-summit/">Portland OpenStack Summit</a> by <a href="https://tropicaldevel.wordpress.com/">John Bresnahan</a></li>
<li><a href="http://www.danplanet.com/blog/2013/04/22/dans-partial-summary-of-the-nova-track/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dans-partial-summary-of-the-nova-track">Dan’s Partial Summary of the Nova Track</a> by <a href="http://www.danplanet.com/blog">Dan Smith</a></li>
<li><a href="http://fewbar.com/2013/04/the-rocket-ship-to-havana-openstack-summit-spring-2013/">The Rocket Ship to Havana – OpenStack Summit Spring 2013</a> by <a href="http://fewbar.com/">Clint Byrum</a></li>
<li><a href="http://www.openstack.org/blog/2013/04/women-of-openstack-at-the-portland-summit/">Women of OpenStack at the Portland Summit</a> by <a href="http://www.openstack.org/blog">Anne Gentle</a></li>
<li><a href="http://www.stillhq.com/openstack/havana/000002.html">Michael&#8217;s surprisingly unreliable predictions for the Havana Nova release</a> by <a href="http://www.stillhq.com/">Michael Still</a></li>
<li><a href="http://swiftstack.com/blog/2013/04/17/openstack-summit-extending-swift-acls-and-metadata/">Havana Design Summit: Extending ACLs and Metadata</a> by <a href="http://swiftstack.com/">SwiftStack Team</a></li>
<li><a href="http://www.enovance.com/fr/blog/5567/openstack-havana-design-summit-in-portland-day-3">Design Summit in Portland</a>: <a href="http://www.enovance.com/fr/blog/5534/openstack-havana-design-summit-in-portland-day-1">Day 1</a>,<a href="http://www.enovance.com/fr/blog/5550/openstack-havana-design-summit-in-portland-day-2">Day 2</a>, <a href="http://www.enovance.com/fr/blog/5567/openstack-havana-design-summit-in-portland-day-3">Day 3</a>, <a href="http://www.enovance.com/fr/blog/5594/openstack-havana-design-summit-in-portland-day-4"> Day 4</a> by <a href="http://www.enovance.com/">eNovance</a></li>
<li><a href="http://swiftstack.com/blog/2013/04/15/openstack-summit-talks-swift-extensions/">Havana Design Summit: Swift Extensions Talk</a> by <a href="http://swiftstack.com/">SwiftStack Team</a></li>
<li><a href="http://swiftstack.com/blog/2013/04/15/openstack-summit-extending-swift-acls-and-metadata/">Havana Design Summit: Extending ACLs and Metadata</a> by <a href="http://swiftstack.com/">SwiftStack Team</a></li>
<li><a href="http://princessleia.com/journal/?p=7943">OpenStack Design Summit </a><a href="http://princessleia.com/journal/?p=7930">days 1-2</a>, <a href="http://princessleia.com/journal/?p=7943">days 3-4</a> by <a href="http://princessleia.com/journal">Elizabeth Krumbach</a></li>
<li><a href="http://robhirschfeld.com/2013/04/22/stack-shop-macklemore-thrift-shop/">“Stack Shop” cover of Macklemore’s Thrift Shop</a> by <a href="http://rob/">Rob</a><a href="http://robhirschfeld.com/2013/04/22/stack-shop-macklemore-thrift-shop/"> Hirschfeld</a> and others</li>
<li><a href="http://anystacker.com/2013/04/the-making-of-cloud-of-usb-sticks/">The Making of Cloud of USB Sticks</a> by eglute</li>
</ul>
<h3><a href="http://www.rhonabwy.com/wp/2013/04/19/openstack-docs-and-tooling-in-20-minutes/">OpenStack docs and tooling in 20 minutes</a></h3>
<p>Howto get started with all the tooling and setup needed to build, review, and contribute to OpenStack Documentation. By <a href="http://www.rhonabwy.com/wp">Joe Heck</a>.</p>
<h4><a href="http://justwriteclick.com/2013/04/14/how-its-made-the-openstack-api-reference-page/">How It’s Made: the OpenStack API Reference Page</a></h4>
<p>The site at <a href="http://api.openstack.org/" target="_blank">http://api.openstack.org</a> is a collection of HTML pages, and one page has an especially interesting story about how it is built. <a href="http://justwriteclick.com/">Anne Gentle</a> reveals the secret.</p>
<h3><a href="https://tropicaldevel.wordpress.com/2013/04/24/storage-transfer/">Storage != Transfer</a></h3>
<p>John Bresnahan argues that concepts of data transfer and data storage should not be conflated into a single solution.  He believes that OpenStack can benefit from a new component that offloads the burden of optimally transferring images from existing components like nova-compute and swift.</p>
<h2>Report from Previous Events</h2>
<ul>
<li><a href="http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/">3rd Swiss OpenStack User Group Meetup</a></li>
</ul>
<h2>Tips and Tricks</h2>
<ul>
<li>By <a href="http://sebastien-han.fr/">Sébastien Han</a>: <a href="http://sebastien-han.fr/blog/2013/04/25/ceph-and-cinder-multi-backend/">Ceph and Cinder multi-backend</a></li>
<li>By <a href="http://blog.chmouel.com/">Chmouel Boudjnah</a> :: <a href="http://blog.chmouel.com/2013/04/22/howto-revoke-a-token-with-keystone-and-pki-v2-0-api/">Howto revoke a token with keystone and PKI (v2.0 API)</a></li>
<li>By <a href="http://adam.younglogic.com/2013/04/database-tests-keystone/">Running PostgreSQL and Mysql Unit tests in Keystone</a></li>
<li>By <a href="http://swiftstack.com/">SwiftStack Team</a>: <a href="http://swiftstack.com/blog/2013/04/18/openstack-summit-benchmarking-swift/">Havana Design Summit: Benchmarking Swift</a></li>
<li>By <a href="http://www.giuliofidente.com/">Giulio Fidente</a>: <a href="http://www.giuliofidente.com/2013/04/deploy-openstack-heat-on-rhel-and-derivates.html">Deploy OpenStack Heat on RHEL (and derivates)</a></li>
</ul>
<h2>Upcoming Events</h2>
<ul>
<li><a href="http://www.meetup.com/OpenStack-DACH/events/108876542/" target="_blank">OpenStack meeting in Cologne</a> May 04, 2013 &#8211; Cologne, Germany <a href="http://www.meetup.com/OpenStack-DACH/events/108876542/" target="_blank">Details</a></li>
<li><a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">OpenStack DACH Day</a> May 24, 2013 &#8211; Berlin Fairgrounds <a href="http://www.prweb.com/releases/2013/3/prweb10526716.htm" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/IGTCloud/events/99146542/" target="_blank">OpenStack Israel</a> May 27, 2013 &#8211; Tel-Aviv, Israel <a href="http://www.openstack-israel.org/" target="_blank">Details</a></li>
<li><a href="http://www.openstack.org/" target="_blank">OpenStack CEE Day</a> May 29, 2013 – Budapest <a href="http://www.openstack.org/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Building an OpenStack Cloud</a> May 30, 2013 &#8211; Chicago, IL <a href="http://www.meetup.com/meetup-group-NjZdcegA/events/108731562/" target="_blank">Details</a></li>
<li><a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">OpenStack meeting in Munich</a> Jun 11, 2013 &#8211; Munich, Germany <a href="http://www.meetup.com/openstack-de/events/109700562/" target="_blank">Details</a></li>
<li><a href="http://event.gigaom.com/structure/" target="_blank">GigaOM Structure</a> Jun 19 &#8211; 20, 2013 &#8211; San Francisco, CA <a href="http://event.gigaom.com/structure/" target="_blank">Details</a></li>
<li><a href="http://www.oscon.com/oscon2013" target="_blank">OSCON 2013</a> Jul 22 &#8211; 26, 2013 &#8211; Portland, OR <a href="http://www.oscon.com/oscon2013" target="_blank">Details</a></li>
</ul>
<h2>Other News</h2>
<ul>
<li><a href="http://www.mirantis.com/blog/openstack-project-technical-lead-interview-series-1-mark-mcclain-openstack-networking-project/" target="_blank">OpenStack Project Technical Lead Interview Series #1: Mark McClain, OpenStack Networking Project </a></li>
<li><a href="http://robhirschfeld.com/2013/04/24/crowbar-slipped-and-shipped-grizzly/">Crowbar and our Pivot (or, how we slipped and shipped Grizzly)</a></li>
<li><a href="http://www.mirantis.com/blog/project-savanna-moves-ahead-red-hat-and-hortonworks-commit-to-work-on-hadoop-as-a-service-on-openstack/">Project Savanna Moves Ahead: Red Hat and Hortonworks are on board</a></li>
<li>OpenStack Project Meeting: <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-04-23-21.02.html">Summary</a> and <a href="http://eavesdrop.openstack.org/meetings/project/2013/project.2013-04-23-21.02.log.html">full logs</a></li>
</ul>
<h2>Welcome New Developers</h2>
<ul>
<li>Tilottama Gaat, Rackspace</li>
<li>Zang MingJie, None</li>
<li>Jason Dunsmore, Rackspace</li>
<li>James Slagle, None</li>
</ul>
<h2>Got answers?</h2>
<p><a href="https://ask.openstack.org/">Ask OpenStack</a> is the go-to destination for OpenStack users. Interesting questions waiting for answers:</p>
<ul>
<li><a href="https://ask.openstack.org/question/524/why-is-the-quantum-linuxbridge-plugin-getting-sudo-errors/">Why is the quantum linuxbridge plugin getting sudo errors?</a></li>
<li><a href="https://ask.openstack.org/question/82/how-to-do-automated-deployment-of-a-new-node/">How to do automated deployment of a new node?</a></li>
<li><a href="https://ask.openstack.org/question/220/is-it-safe-to-use-wmi-python-library-to-manage-hyperv-driver-from-a-linux-host/">Is it safe to use WMI python library to manage HyperV driver from a Linux host?</a></li>
<li><a href="https://ask.openstack.org/question/225/why-do-i-see-unable-to-find-authentication-token-in-headers-using-swift-with-staticweb/">Why do I see &#8220;Unable to find authentication token in headers&#8221; using swift with staticweb?</a></li>
<li><a href="https://ask.openstack.org/question/183/whats-causing-permission-error-with-vmware-vcenteresx-410-on-grizzly/">What&#8217;s causing permission error with Vmware Vcenter/ESX 4.1.0 on Grizzly?</a></li>
<li><a href="https://ask.openstack.org/question/524/why-is-the-quantum-linuxbridge-plugin-getting-sudo-errors/">Why is the quantum linuxbridge plugin getting sudo errors?</a></li>
</ul>
<p><em>The weekly newsletter is a way for the community to learn about all the various activities occurring on a weekly basis. If you would like to add content to a weekly update or have an idea about this newsletter, please leave a comment.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/04/openstack-community-weekly-newsletter-apr-12-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3rd Swiss OpenStack User Group Meetup</title>
		<link>http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/</link>
		<comments>http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/#comments</comments>
		<pubDate>Thu, 25 Apr 2013 19:11:57 +0000</pubDate>
		<dc:creator>dizz</dc:creator>
				<category><![CDATA[community]]></category>
		<category><![CDATA[Meetup]]></category>
		<category><![CDATA[icclab]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[OpenStack]]></category>
		<category><![CDATA[openvswitch]]></category>
		<category><![CDATA[packstack]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[smartos]]></category>
		<category><![CDATA[swing]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4113</guid>
		<description><![CDATA[Following on from our 2nd meeting, the Swiss OpenStack user group met on 24th of April at the University of Bern.It was an excellent event with many attention grabbing presentations! A big thanks goes out to the sponsors: &#160; Red Hat: for extra tasty on-demand pizza as a service SwiNG: for a great selection of [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/chosug.png"><br />
<img class="alignleft" alt="chosug" src="http://www.cloudcomp.ch/wp-content/uploads/2013/04/chosug.png" width="70" height="74" /></a>Following on from our <a href="http://www.cloudcomp.ch/2013/02/2nd-swiss-openstack-user-group-meeting/">2nd meeting</a>, the <a href="http://www.meetup.com/openstack-ch/events/112066462/">Swiss OpenStack user group met on 24th of April</a> at the University of Bern.It was an excellent event with many attention grabbing presentations! A big thanks goes out to the sponsors:</p>
<p>&nbsp;</p>
<ul>
<li><a href="http://ch.redhat.com/">Red Hat</a>: for extra tasty on-demand pizza as a service</li>
<li><a href="http://www.swing-grid.ch">SwiNG</a>: for a great selection of beverages</li>
<li><a href="http://www.unibe.ch/eng/">University of Bern</a>: for the facilities</li>
</ul>
<p>Once <a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/CHOSUG-Opening-Slides.pdf">we kicked off</a>, there were five presentations, 3 which were more detailed and 2 that were more lightning talks in nature. The presentations in there running order were:</p>
<ul>
<li><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/OpenStack-Quantum-SDN-with-Open-vSwitch.pdf">OpenStack Quantum SDN with Open vSwitch</a>, <a href="http://ch.redhat.com">Redhat</a>, Thomas Graf.</li>
<li><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/OpenStack-on-SmartOS-3rd-CHOSUG.pptx">OpenStack on SmartOS</a>, <a href="http://www.cloudcomp.ch">ICCLab</a>, Daniele Stroppa.</li>
<li><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/Packstack.pdf">Packstack</a>, <a href="http://www.systemsx.ch/">Systemx</a>, Sandro Mathys</li>
<li><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/OpenStack-in-Hepia.pdf">OpenStack in Hepia</a>, <a href="http://www.hes-so.ch/en/homepage-hes-so-1679.html">University of Applied Sciences Western Switzerland</a>, Dimitri Racordon</li>
<li><a href="http://www.cloudcomp.ch/wp-content/uploads/2013/04/bern-3rd-ug-meetup-muharem.pdf">Impressions from the Summit in Portland</a>, <a href="http://www.rackspace.com">Rackspace</a>, Muharem Hrnjadovic</li>
</ul>

<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-02-29/' title='Screen Shot 2013-04-25 at 17.02.29'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.02.29-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.02.29" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-02-47/' title='Screen Shot 2013-04-25 at 17.02.47'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.02.47-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.02.47" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-02-59/' title='Screen Shot 2013-04-25 at 17.02.59'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.02.59-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.02.59" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-03-16/' title='Screen Shot 2013-04-25 at 17.03.16'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.03.16-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.03.16" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-03-27/' title='Screen Shot 2013-04-25 at 17.03.27'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.03.27-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.03.27" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-03-41/' title='Screen Shot 2013-04-25 at 17.03.41'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.03.41-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.03.41" /></a>
<a href='http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/screen-shot-2013-04-25-at-17-03-55/' title='Screen Shot 2013-04-25 at 17.03.55'><img width="150" height="150" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/Screen-Shot-2013-04-25-at-17.03.55-150x150.png" class="attachment-thumbnail" alt="Screen Shot 2013-04-25 at 17.03.55" /></a>

<p><span style="font-size: 2em">Upcoming</span></p>
<p>There are other upcoming Swiss events that will include much talk of OpenStack. Of note are:</p>
<ul>
<li><a href="http://www.amiando.com/AcademicCloud.html">Academic Cloud Computing Experience</a>, April 29th.</li>
<li><a href="http://wiki.linuxtag.org/w/vp:OpenStack_DACH_Tag_2013">OpenStack DACH at LinuxTag</a>, 24th May.</li>
<li><a href="https://www.ch-open.ch/events/aktuelle-events/open-cloud-day-2013/">Swiss Open Systems User Group, Open Cloud Day 2013</a>, June 11th.</li>
</ul>
<p>Also the Swiss Informatics Society have started a cloud computing special interest group, where all folk active in cloud are welcomed to join. <a href="http://www.s-i.ch/fachgruppen-und-sektionen/cloud-computing/">More details can be found at their site</a>.</p>
<h3>Swiss OpenStack User Group Channels</h3>
<ul>
<li><a href="http://www.cloudcomp.ch/the-icclab-community/openstack-user-group/">General Info</a></li>
<li><a href="http://www.openstack.ch">Meetup site</a></li>
<li><a href="https://wiki.systemsx.ch/display/chosug/Swiss+Openstack+Usergroup+Wiki">CHOSUG Wiki</a></li>
<li><a href="http://www.linkedin.com/groups/OpenStack-Switzerland-4493120/about">LinkedIn</a></li>
<li><a href="https://sympa.systemsx.ch/sympa/subscribe/swiss-openstack-usergroup">Mailing List</a></li>
<li><a href="http://twitter.com/OpenStackCH">Twitter @OpenStackCH</a></li>
</ul>
<p><a href="http://www.cloudcomp.ch/2013/04/3rd-swiss-openstack-user-group-meetup/"><em> Original post: ICCLab</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/04/3rd-swiss-openstack-user-group-meet-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Women of OpenStack at the Portland Summit</title>
		<link>http://www.openstack.org/blog/2013/04/women-of-openstack-at-the-portland-summit/</link>
		<comments>http://www.openstack.org/blog/2013/04/women-of-openstack-at-the-portland-summit/#comments</comments>
		<pubDate>Mon, 22 Apr 2013 19:22:41 +0000</pubDate>
		<dc:creator>cmassey</dc:creator>
				<category><![CDATA[Awards]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Event]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Women of OpenStack]]></category>

		<guid isPermaLink="false">http://www.openstack.org/blog/?p=4096</guid>
		<description><![CDATA[Keeping in step with the rapid growth in the OpenStack community, the Women of OpenStack presence at the Summit has grown significantly as well &#8211; over 200 women registered. Upon arriving at the Summit in Portland women were welcomed with specially designed lady&#8217;s-cut red hoodies, an invitation to attend a networking breakfast, and an open [...]]]></description>
				<content:encoded><![CDATA[<p>Keeping in step with the rapid growth in the OpenStack community, the Women of OpenStack presence at the Summit has grown significantly as well &#8211; over 200 women registered. Upon arriving at the Summit in Portland women were welcomed with specially designed lady&#8217;s-cut red hoodies, an invitation to attend a networking breakfast, and an open platform to share knowledge and ideas for how to get more women involved in the OpenStack community.</p>
<p>Over 70 women attended the networking breakfast hosted by the OpenStack Foundation and lead by community leader, Anne Gentle.  During the breakfast Anne was surprised to be recognized by the Foundation with the creation of the <em>Anne Gentle Travel Scholarship for Women </em>named in her honor. The scholarship will continue to fund travel for women to attend future OpenStack Summits. The initial use supported three OpenStack interns who attended the Portland Summit &#8211; Laura Alves and Victoria Martinez de la Cruz from Argentina and Anita Kuno from Canada. Learn more about the <a href="https://wiki.openstack.org/wiki/OutreachProgramForWomen">Outreach Program for Women here</a>.</p>
<p>To watch a glimpse of the Women of OpenStack who attended the Summit, check out this video, <a href="http://www.rackspace.com/blog/getting-more-women-involved-in-openstack/">Getting More Women Involved in OpenStack</a>, filmed by Rackspace Videographer, Jacob Forbis.</p>
<p style="text-align: left;">To get involved yourself &#8211; join the <a href="http://www.linkedin.com/groups/Women-OpenStack-WOS-4681909?trk=myg_ugrp_ovr">Women of OpenStack group on LinkedIn</a> today!</p>
<div id="attachment_4098" class="wp-caption alignnone" style="width: 310px"><a href="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9415.jpg"><img class="size-medium wp-image-4098" alt="Group Shot of those who attended the Breakfast for Women" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9415-300x198.jpg" width="300" height="198" /></a><p class="wp-caption-text">Group Shot of those who attended the Breakfast for Women</p></div>
<div id="attachment_4100" class="wp-caption alignnone" style="width: 310px"><a href="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9403.jpg"><img class="size-medium wp-image-4100" alt="Anne Gentle is recognized with a Travel Scholarship for Women named in her honor" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9403-300x198.jpg" width="300" height="198" /></a><p class="wp-caption-text">Anne Gentle is recognized with a Travel Scholarship for Women named in her honor</p></div>
<div id="attachment_4097" class="wp-caption alignnone" style="width: 208px"><a href="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9420.jpg"><img class="size-medium wp-image-4097" alt="GNOME Interns: Laura Alves Anita Kuno Victoria Martínez de la Cruz" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9420-198x300.jpg" width="198" height="300" /></a><p class="wp-caption-text">GNOME Interns:<br />Laura Alves<br />Anita Kuno<br />Victoria Martínez de la Cruz</p></div>
<div id="attachment_4099" class="wp-caption alignnone" style="width: 208px"><a href="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9407.jpg"><img class="size-medium wp-image-4099" alt="Red hoodies given out at the Summit were specifically designed for women - based on feedback from the previous Summit" src="http://www.openstack.org/blog/wp-content/uploads/2013/04/openstack-AH0_9407-198x300.jpg" width="198" height="300" /></a><p class="wp-caption-text">Red hoodies given out at the Summit were specifically designed for women &#8211; based on feedback from the previous Summit</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.openstack.org/blog/2013/04/women-of-openstack-at-the-portland-summit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
