<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>/dev/zero &#187; eucalyptus</title>
	<atom:link href="http://blog.devzero.com/category/eucalyptus/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.devzero.com</link>
	<description>The infinite stream</description>
	<lastBuildDate>Sun, 09 Jun 2013 03:45:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.devzero.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>/dev/zero &#187; eucalyptus</title>
		<link>http://blog.devzero.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.devzero.com/osd.xml" title="/dev/zero" />
	<atom:link rel='hub' href='http://blog.devzero.com/?pushpress=hub'/>
		<item>
		<title>What&#8217;s New in Euca2ools 3, Part 2:  A Developer&#8217;s Perspective</title>
		<link>http://blog.devzero.com/2013/04/03/whats-new-in-euca2ools-3-part-2-a-developers-perspective/</link>
		<comments>http://blog.devzero.com/2013/04/03/whats-new-in-euca2ools-3-part-2-a-developers-perspective/#comments</comments>
		<pubDate>Wed, 03 Apr 2013 13:05:45 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[euca2ools]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=492</guid>
		<description><![CDATA[The upcoming version of euca2ools, version 3, completely reworks the command line suite to make it both easier to write and easier to use. Part 1 of this series discussed the user-facing changes version 3 has to offer, and today we&#8217;re going to take a look at how things improve on the developer&#8217;s side of [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=492&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The upcoming version of euca2ools, version 3, completely reworks the command line suite to make it both easier to write and easier to use.  <a href="http://blog.devzero.com/2013/02/21/whats-new-in-euca2ools-3-part-1-a-users-perspective/" title="What’s New in Euca2ools 3, Part 1:  A User’s Perspective">Part 1</a> of this series discussed the user-facing changes version 3 has to offer, and today we&#8217;re going to take a look at how things improve on the developer&#8217;s side of the fence.</p>
<h4>A change in philosophy:  declarative programming</h4>
<p>The developer is very much in the driver&#8217;s seat in version 1 of euca2ools.  To use a car analogy, the developer directly controls the code&#8217;s direction, speed, and gearbox manually.  Version 2 adds a cruise control by centralizing a lot of boilerplate code in the form of boto&#8217;s <code>roboto</code> module.  Version 3 opts to let the developer give the <a href="https://github.com/boto/requestbuilder">requestbuilder</a> framework a destination, step aside completely, and let it do the driving for the boring parts of the trip.</p>
<p>Requestbuilder offers a set of base classes and a domain-specific language based on python&#8217;s standard <code>argparse</code> library that allows the developer to say exactly how something should look at the command line in addition to how it should look when given to the server all in the same place.</p>
<p>What makes this so powerful is that it lets anybody with a service&#8217;s documentation and knowledge of how to use <code>argparse</code> write a command line tool quickly and painlessly.  For instance, it took me around a day to write highly-customized command line tools for every operation Amazon&#8217;s Elastic Load Balancing service supports.  Here&#8217;s the code from one of them:</p>
<pre class="brush: python; title: ; notranslate">
class CreateLBCookieStickinessPolicy(ELBRequest):
    DESCRIPTION = ('Create a new stickiness policy for a load balancer, '
                   'whereby the load balancer automatically generates cookies '
                   'that it uses to route requests from each user to the same '
                   'back end instance. This type of policy can only be '
                   'associated with HTTP or HTTPS listeners.')
    ARGS = [Arg('LoadBalancerName', metavar='ELB',
                help='name of the load balancer to modify (required)'),
            Arg('-e', '--expiration-period', dest='CookieExpirationPeriod',
                metavar='SECONDS', type=int, required=True,
                help='''time period after which cookies should be considered
                stale (default: user's session length) (required)'''),
            Arg('-p', '--policy-name', dest='PolicyName', metavar='POLICY',
                required=True, help='name of the new policy (required)')]
</pre>
<p>The framework hands everything inside each <code>Arg</code> in this code to <code>argparse</code> to gather input from the command line and then send the results directly to the web server using whatever name argparse gives the input it gets.  For instance, whatever a user supplies using the <code>-e</code> option ends up getting sent to the server as a <code>CookieExpirationPeriod</code> parameter.  With a small amount of practice it becomes quite easy to write a bunch of commands this way very quickly.</p>
<h4>One request, one command</h4>
<p>Euca2ools are built around a &#8220;one request, one command&#8221; tenet.  This means that, in general, there is a dedicated command for each thing a web service can do.  This philosophy naturally lends itself to the tight coupling between command line options and what gets sent to the server discussed earlier, but it also lends itself to reversing the usual relationship between web services and web service requests.  Whereas one typically writes an object that represents the service and uses methods on it to send requests, in euca2ools it is the commands, and thus the requests, which are the first-class citizens.  Each command that represents a request instead points to a service, rather than the other way around.</p>
<p>The way this works in practice is by defining a base class for each service and a base class that all methods which use that service share:</p>
<pre class="brush: python; title: ; notranslate">
class CloudWatch(requestbuilder.service.BaseService):
    NAME = 'monitoring'
    DESCRIPTION = 'Instance monitoring service'
    API_VERSION = '2010-08-01'
    AUTH_CLASS = requestbuilder.auth.QuerySigV2Auth
    URL_ENVVAR = 'AWS_CLOUDWATCH_URL'

    ARGS = [MutuallyExclusiveArgList(
                Arg('--region', dest='userregion', metavar='USER@REGION',
                    route_to=SERVICE, help='''name of the region and/or user
                    in config files to use to connect to the service'''),
                Arg('-U', '--url', metavar='URL', route_to=SERVICE,
                    help='instance monitoring service endpoint URL'))]

class CloudWatchRequest(requestbuilder.request.AWSQueryRequest):
    SERVICE_CLASS = CloudWatch
</pre>
<p>Services can supply their own command line options in the same way as requests.  After it gathers options from the command line, requestbuilder uses <code>route_to</code> to choose where to send it.  This also provides a convenient way to tell the framework not to send an option to the server at all when a command needs to process it specially:  just use <code>route_to=None</code>.</p>
<h4>Convention over configuration</h4>
<p>The oft-quoted programming paradigm for frameworks is just as true for euca2ools 3 as it is elsewhere.  Want to make a command print something?  Just write a <code>print_result</code> method.  The result from the server gets passed in as a dictionary.</p>
<pre class="brush: python; title: ; notranslate">
class TerminateInstances(EucalyptusRequest):
    DESCRIPTION = 'Terminate one or more instances'
    ARGS = [Arg('InstanceId', metavar='INSTANCE', nargs='+',
                help='ID(s) of the instance(s) to terminate')]
    LIST_TAGS = ['instancesSet']

    def print_result(self, result):
        for instance in result.get('instancesSet', []):
            print self.tabify(('INSTANCE', instance.get('instanceId'),
                               instance.get('previousState', {}).get('name'),
                               instance.get('currentState', {}).get('name')))
</pre>
<p>Want to make a request do fancier preparations than <code>argparse</code> can do on its own?  Just write a <code>preprocess</code> method that takes things from <code>self.args</code> and adds things to <code>self.params</code> to be sent to the server.</p>
<pre class="brush: python; title: ; notranslate">
class DescribeSecurityGroups(EucalyptusRequest):
    DESCRIPTION = ('Show information about security groups\n\nNote that '
                   'filters are matched on literal strings only, so '
                   '&quot;--filter ip-permission.from-port=22&quot; will *not* match a '
                   'group with a port range of 20 to 30.')
    ARGS = [Arg('group', metavar='GROUP', nargs='*', route_to=None,
                default=[], help='limit results to specific security groups')]
    ...
    def preprocess(self):
        for group in self.args['group']:
            if group.startswith('sg-'):
                self.params.setdefault('GroupId', [])
                self.params['GroupId'].append(group)
            else:
                self.params.setdefault('GroupName', [])
                self.params['GroupName'].append(group)
</pre>
<p>There are also a few other methods one can plug in, such as <code>postprocess</code>, and, for especially early-running code, <code>configure</code>.  Expect documentation for requestbuilder that covers this in detail in the future.</p>
<h4>Scratching the surface</h4>
<p>The examples above cover only a fraction of what is possible with euca2ools 3&#8242;s new infrastructure.  While you can look forward to some more advanced uses of it in later blog posts, you can also take a look at the current euca2ools code in development to see some of the interesting things one can do with it.  Today&#8217;s pre-release of that code carries with it commands for all three of AWS&#8217;s &#8220;triangle&#8221; services:  Auto Scaling, CloudWatch, and Elastic Load Balancing.  Continuing what seems to have become a euca2ools tradition, just look for the commands that start with <code>euscale</code> (pronounced &#8220;you scale&#8221;) <code>euwatch</code> (&#8220;you watch&#8221;), and <code>eulb</code> (&#8220;you&#8217;ll be&#8221;).</p>
<p>Packages for Fedora and RHEL 6 are available <a href="http://repos.fedorapeople.org/repos/gholms/cloud/">here</a>.  If you&#8217;re using another OS or want to build the code yourself you can simply clone euca2ools&#8217;s <a href="https://github.com/eucalyptus/euca2ools">git repository</a>&#8216;s <code>requestbuilder</code> branch.  Requestbuilder itself is available on <a href="https://pypi.python.org/pypi/requestbuilder">PyPI</a> and <a href="https://github.com/boto/requestbuilder">GitHub</a>.  As always, I encourage you to test this code against AWS and Eucalyptus 3.3 and let me know what you think on the <a href="https://groups.google.com/a/eucalyptus.com/forum/#!forum/euca-users">euca-users</a> mailing list.  If you encounter bugs, please file them in the project&#8217;s <a href="https://eucalyptus.atlassian.net/browse/TOOLS">bug tracker</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/492/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/492/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=492&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2013/04/03/whats-new-in-euca2ools-3-part-2-a-developers-perspective/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s New in Euca2ools 3, Part 1:  A User&#8217;s Perspective</title>
		<link>http://blog.devzero.com/2013/02/21/whats-new-in-euca2ools-3-part-1-a-users-perspective/</link>
		<comments>http://blog.devzero.com/2013/02/21/whats-new-in-euca2ools-3-part-1-a-users-perspective/#comments</comments>
		<pubDate>Thu, 21 Feb 2013 21:00:30 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[euca2ools]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=444</guid>
		<description><![CDATA[Version 3 of euca2ools, slated for release in just a couple months, gives the command line suite a much-needed refresh that makes it both easier to write and easier to use. Most of the innovation here involves changes to the platform upon which it is built. I will cover those changes from a developer&#8217;s perspective [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=444&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Version 3 of <a href="https://github.com/eucalyptus/euca2ools/tree/requestbuilder">euca2ools</a>, slated for release in just a couple months, gives the command line suite a much-needed refresh that makes it both easier to write and easier to use.  Most of the innovation here involves <a href="http://blog.devzero.com/2012/04/14/euca2ools-past-present-and-future/" title="Euca2ools: Past, Present, and Future">changes</a> to the platform upon which it is built.  I will cover those changes from a developer&#8217;s perspective in future blog posts, but today I&#8217;m going to focus on what euca2ools 3 brings to the table for developers and other users alike.  While there are too many small improvements to possibly cover them all, euca2ools 3 at last brings a few of the niceties power users have come to expect from their command line tools to cloud management.</p>
<h4>A configuration file</h4>
<p>Yes, you read that right:  a configuration file.  Both euca2ools and the command line tools provided by AWS themselves have astonishingly limited support for configuration, forcing people to resort to writing a separate shell script for each combination of users and clouds one might possibly want to access and then use them in place of one.</p>
<p>Your cries of anguish have been heard, so now we have this:</p>
<pre class="brush: plain; auto-links: false; light: true; title: ; notranslate">
[user gholms]
key-id = AKIA93F29V0AEXAMPLE
secret-key = vcasd93cm1458un4vj84039vda78mDEXAMPLE

[user ecc-admin]
key-id = EVDB93F29V0AEXAMPLE
secret-key = 38fva93cm1458un4vj84039vda78mDEXAMPLE

[region us-east-1]
ec2-url = https://ec2.amazonaws.com/
iam-url = https://iam.amazonaws.com/
s3-url  = https://s3.amazonaws.com/
user = gholms

[region ecc]
ec2-url = https://communitycloud.eucalyptus.com:8773/services/Eucalyptus/
iam-url = https://communitycloud.eucalyptus.com:8773/services/Euare/
s3-url  = https://communitycloud.eucalyptus.com:8773/services/Walrus/
user = ecc-admin

[global]
default-region = us-east-1
</pre>
<p>A file like this, combined with the <code>--region</code> option that all tools share, mean you can mix and match users and clouds to you heart&#8217;s content.  Just throw a file like this inside of <code>~/.euca</code>, end it with <code>.ini</code>, and away you go!  You can add as many files to <code>~/.euca</code> as you want —  they all get combined together.</p>
<h4>Friendly error feedback</h4>
<p>Another common complaint that people had with euca2ools 2 was its behavior in the face of input that didn&#8217;t match what it expected.  Some of the worst offenders had error messages ranging from <a href="https://eucalyptus.atlassian.net/browse/TOOLS-38">confusing</a> to <a href="https://eucalyptus.atlassian.net/browse/TOOLS-150">irrelevant</a> to <a href="https://eucalyptus.atlassian.net/browse/TOOLS-83">nonexistent</a>.  Euca2ools 3 overhauls the code that does this, replacing it with standard python tools and friendlier code that makes its behavior in the face of errors much better.</p>
<p>Here&#8217;s how it behaves in the face of the most common case of this:</p>
<pre class="brush: plain; highlight: [1]; light: true; title: ; notranslate">
% euca-describe-availability-zones
error: missing access key ID; please supply one with -I
</pre>
<p>Also included is special treatment for &#8220;pick one from multiple alternatives&#8221; options:</p>
<pre class="brush: plain; highlight: [1]; light: true; title: ; notranslate">
% euare-useraddcert
usage: euare-useraddcert (-c CERT | -f FILE) [-u USER]
                         [--as-account ACCOUNT] [--region REGION | -U URL]
                         [-I KEY_ID] [-S KEY]
euare-useraddcert: error: one of the arguments -c/--certificate-body -f/--certificate file is required
</pre>
<p>A lot of attention to detail went into dealing with some of the most common mistakes people make:</p>
<pre class="brush: plain; highlight: [1,3]; light: true; title: ; notranslate">
% euca-register -n myimage -b /dev/sda1=snap-12345678:false
euca-register: error: argument -b/--block-device-mapping: second element of EBS block device mapping &quot;/dev/sda1=snap-00000000:false&quot; must be an integer
% euca-authorize mygroup -p 8773:8777
euca-authorize: error: argument -p/--port-range: multi-port range must be separated by &quot;-&quot;, not &quot;:&quot;
</pre>
<h4>Tagging and filtering support</h4>
<p>Euca2ools 3 at last offers full support for EC2&#8242;s massive sets of resource tags and filters:</p>
<pre class="brush: plain; collapse: true; gutter: false; highlight: [1]; light: false; title: ; toolbar: true; notranslate">
% euca-describe-instances -h
usage: euca-describe-instances [-h] [--show-empty-fields]
...
  --filter NAME=VALUE   restrict results to those that meet criteria
...

allowed filter names:
  architecture          CPU architecture
  availability-zone
  block-device-mapping.attach-time
                        volume attachment time
  block-device-mapping.delete-on-termination
                        whether a volume is deleted upon instance
                        termination
  block-device-mapping.device-name
                        volume device name (e.g.  /dev/sdf)
  block-device-mapping.status
                        volume status
  block-device-mapping.volume-id
                        volume ID
  client-token          idempotency token provided at instance run
                        time
  dns-name              public DNS name
  group-id              security group membership
  hypervisor            hypervisor type
  image-id              machine image ID
  instance-id
  instance-lifecycle    whether this is a spot instance
  instance-state-code   numeric code identifying instance state
  instance-state-name   instance state
  instance-type
  ip-address            public IP address
  kernel-id             kernel image ID
  key-name              key pair name provided at instance launch time
  launch-index          launch index within a reservation
  launch-time           instance launch time
  monitoring-state      whether monitoring is enabled
  owner-id              instance owner's account ID
  placement-group-name
  platform              whether this is a Windows instance
  private-dns-name
  private-ip-address
  product-code
  ramdisk-id            ramdisk image ID
  reason                reason for the more recent state change
  requestor-id          ID of the entity that launched an instance
  reservation-id
  root-device-name      root device name (e.g.  /dev/sda1)
  root-device-type      root device type (ebs or instance-store)
  spot-instance-request-id
  state-reason-code     reason code for the most recent state change
  state-reason-message  
                        message for the most recent state change
  subnet-id             ID of the VPC subnet the instance is in
  tag-key               name of any tag assigned to the instance
  tag-value             value of any tag assigned to the instance
  tag:KEY               specific tag key/value combination
  virtualization-type
  vpc-id                ID of the VPC the instance is in
</pre>
<p>The new foundation this code is based upon makes it incredibly simple to extend support for these features as things change in the future.</p>
<h4>What else?</h4>
<p>Some other minor, but nonetheless noteworthy, changes include:</p>
<ul>
<li><code>euca-*</code> tools gained a <code>--show-empty-fields</code> option that tweaks their output to make it friendlier for running through the <code>column</code> command.</li>
<li>All tools that access web services use the same options (<code>-I</code> and <code>-S</code>) for access keys.</li>
<li><code>euare-*</code> tools&#8217; <code>--delegate</code> option for cloud administrators is now <code>--as-account</code>.</li>
<li>Multiple <code>--filter</code> options are handled correctly.</li>
<li>Machine image device mappings are now handled correctly.</li>
</ul>
<p>A few tools have yet to be ported to the new framework, but will be in the near future.  <code>eustore-installimage</code> is known to be broken.  The bundle management tools should work correctly, though their testing to date has been minimal.  Finally, do not install them on a system that runs a Eucalyptus node controller.</p>
<h4>Isn&#8217;t aws-cli the future?  Why continue developing euca2ools?</h4>
<p><a href="https://github.com/aws/aws-cli">Aws-cli</a> is a great project.  Both it and euca2ools tie what the server sees very closely to what the user sees under the hood, but the euca2ools suite does so in a way that makes it trivial to customize tools to do more complicated things behind the hood or to make them easier to use.  For instance, consider changing a security group&#8217;s permissions in EC2 with aws-cli:</p>
<pre class="brush: plain; highlight: [1]; light: true; title: ; notranslate">
% aws ec2 authorize-security-group-ingress --group-name MySecurityGroup --ip-permissions '{&quot;from_port&quot;:22,&quot;to_port&quot;:22,&quot;ip_protocol&quot;:&quot;tcp&quot;,&quot;ip_ranges&quot;:[&quot;0.0.0.0/0&quot;]}'
</pre>
<p>The exact format we need to use to supply the info the tool needs requires relatively detailed knowledge of what EC2-the-server expects.  Compared to that, the euca2ools version of that is easier to remember and much easier to type:</p>
<pre class="brush: plain; highlight: [1]; light: true; title: ; notranslate">
% euca-authorize MySecurityGroup --port 22 --source-subnet 0.0.0.0/0
</pre>
<p>Aws-cli is a very young project, so people haven&#8217;t yet had the chance to iron it out completely.  Perhaps some day it will become as user-friendly as euca2ools and finally eclipse it.  But we aren&#8217;t there yet.</p>
<h4>How can I try it out?</h4>
<p>If you&#8217;re interested in a preview of the next major version of euca2ools, an alpha release is <a href="https://github.com/eucalyptus/euca2ools/tree/requestbuilder">available on GitHub</a>.  In addition to the dependencies required to run euca2ools 2, you will also need to install <a href="https://pypi.python.org/pypi/requests">requests</a> and the new <a href="https://pypi.python.org/pypi/requestbuilder">requestbuilder</a> framework that drives the new tools.  It is still alpha-quality software, so be prepared to find bugs.  If you encounter any, feel free to file them in the euca2ools project&#8217;s <a href="https://eucalyptus.atlassian.net/browse/TOOLS">bug tracker</a>.</p>
<p>If you&#8217;re interested in helping with development, we are happy to accept pull requests on GitHub.  Please also consider joining the <a href="https://groups.google.com/a/eucalyptus.com/forum/#!forum/euca-users">euca-users mailing list</a> or stopping by in the <code>#eucalyptus-devel</code> IRC channel on Freenode.  I look forward to hearing your feedback.  8^)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/444/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=444&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2013/02/21/whats-new-in-euca2ools-3-part-1-a-users-perspective/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>
	</item>
		<item>
		<title>Importing Key Pairs in Eucalyptus</title>
		<link>http://blog.devzero.com/2012/10/15/importing-key-pairs-in-eucalyptus/</link>
		<comments>http://blog.devzero.com/2012/10/15/importing-key-pairs-in-eucalyptus/#comments</comments>
		<pubDate>Mon, 15 Oct 2012 19:39:48 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>
		<category><![CDATA[features]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=395</guid>
		<description><![CDATA[One of Eucalyptus&#8217;s oldest feature requests that people constantly ask about is the ability to import a pre-existing SSH key for use with instances. It even predates EC2&#8242;s support for doing that. I am happy to report that Eucalyptus 3.2 will at long last support it as well! (See the change on GitHub.) If you&#8217;re [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=395&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>One of Eucalyptus&#8217;s oldest feature requests that people constantly ask about is the ability to import a pre-existing SSH key for use with instances.  It even predates <a href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-ImportKeyPair.html">EC2&#8242;s support</a> for doing that.  I am happy to report that Eucalyptus 3.2 will at long last support it as well!  (See the <a href="https://github.com/eucalyptus/eucalyptus/commit/415c150fb7b766acd2a25c4da101f0b6c83c078e">change on GitHub</a>.)  If you&#8217;re following Eucalyptus development, you can try this out right away with <code>euca-import-keypair</code>.  Chances are, your version of euca2ools already contains it.</p>
<p>The thing that makes this feature <em>really</em> nice, however, looks like this:</p>
<p><img src="http://gholms.files.wordpress.com/2012/10/import-keypair.png?w=610&#038;h=373" alt="Web UI for ImportKeypair" title="import-keypair" width="610" height="373" class="alignnone size-full wp-image-396" /></p>
<p>Just a few hours ago, the new <a href="https://github.com/eucalyptus/eucalyptus-ui">web console</a> that is slated to land alongside Eucalyptus 3.2 later this year gained support for importing key pairs as well.  (See the <a href="https://github.com/eucalyptus/eucalyptus-ui/commit/5143c76489b19e0619a54d0fa23fa1f8a82c91b8">change on GitHub</a>.)  I&#8217;m sure I am not alone in wanting to thank the contributors who added this.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/395/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=395&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2012/10/15/importing-key-pairs-in-eucalyptus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>

		<media:content url="http://gholms.files.wordpress.com/2012/10/import-keypair.png" medium="image">
			<media:title type="html">import-keypair</media:title>
		</media:content>
	</item>
		<item>
		<title>Less Obvious Changes in Eucalyptus 3.1</title>
		<link>http://blog.devzero.com/2012/06/27/less-obvious-changes-in-eucalyptus-3-1/</link>
		<comments>http://blog.devzero.com/2012/06/27/less-obvious-changes-in-eucalyptus-3-1/#comments</comments>
		<pubDate>Wed, 27 Jun 2012 19:11:21 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=226</guid>
		<description><![CDATA[Now that Eucalyptus 3.1 is out at last and we all get to wade through tons of announcements and blog posts, I thought I would mention a few of the changes that have happened since Eucalyptus 2 that you aren&#8217;t likely to see in marketing materials. Why Eucalyptus 2? Most of us don&#8217;t get to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=226&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Now that Eucalyptus 3.1 is <a href="http://gregdekspeaks.wordpress.com/2012/06/27/today-is-the-day/">out at last</a> and we all get to wade through tons of announcements and blog posts, I thought I would mention a few of the changes that have happened since Eucalyptus 2 that you aren&#8217;t likely to see in marketing materials.</p>
<p>Why Eucalyptus 2?  Most of us don&#8217;t get to use Eucalyptus 3.0, so comparing against that wouldn&#8217;t exactly be fair, would it?  ;-)</p>
<h4>Centralized documentation</h4>
<p>The documentation for Eucalyptus 2 was strewn about the Eucalyptus website on a number of wiki pages.  You had to read <em>all</em> of them to have any hope of ending up with a working cloud.</p>
<p>Eucalyptus 3&#8242;s documentation comes in the form of <a href="http://www.eucalyptus.com/eucalyptus-cloud/documentation">front-to-back PDFs</a>.  HTML documentation is forthcoming.  You still need to read it all, but it is now in one place so you don&#8217;t have to go digging to find it.</p>
<p>The documentation&#8217;s source (in DITA format, if you find that sort of thing interesting) is also up <a href="https://github.com/eucalyptus/documentation">on github</a>, so there is now a way to fix errors:  just send a pull request.</p>
<h4>A new database</h4>
<p>Eucalyptus 3.1 switches from HSQLDB to PostgreSQL.  Given the number of Eucalyptus users I have seen over time who have experienced problems with HSQLDB&#8217;s behavior in the face of faults, I suspect this will make a lot of people happy.</p>
<h4>Correct packaging</h4>
<p>The RPM and DEB packages for Eucalyptus 2 fail to list a number of important things they depend upon, making the software needlessly complicated to install.  In fact, this was so complicated that the popular <a href="http://downloads.eucalyptus.com/software/faststart/">FastStart</a> distribution became the method of choice for getting started with a new Eucalyptus cloud.</p>
<p>This is no longer the case.  Installation now consists of adding package repositories and telling one&#8217;s package manager to install a component.  No more &#8220;install these dependencies first.&#8221;  No more &#8220;download these packages separately and install them.&#8221;  In fact, short of a script that writes Eucalyptus&#8217;s configuration for you, this completely obviates the need for FastStart.</p>
<h4>RHEL 6 support</h4>
<p>Eucalyptus 2 is supported only on CentOS 5.  It also works on RHEL 5, but users of RHEL 6 and friends couldn&#8217;t even compile the stuff.  That is now fixed; those operating systems now have full support.</p>
<h4>A more usable configuration file</h4>
<p>Eucalyptus 2&#8242;s configuration file jams everything into one huge list.  Nothing gives any indication what Eucalyptus components actually care about each option.  There is also no indication how options were affected by one&#8217;s choice of networking mode.</p>
<p>Eucalyptus 3&#8242;s configuration file and documentation break options down by component.  For networking-related options, they also list the networking modes in which they apply.</p>
<h4>Bugfixes</h4>
<p>Eucalyptus 3 fixes bugs.  Lots and lots of bugs.  So many bugs that release notes cannot possibly list them all.  In the future this will be easier, as every future bug report will now go through <a href="https://eucalyptus.atlassian.net/browse/EUCA">a new JIRA tracker</a>.</p>
<h4>What else?</h4>
<p>Those are some of my favorites, but there are lots of other little improvements all over the place.  <a href="http://www.eucalyptus.com/eucalyptus-cloud/get">Try Eucalyptus 3 out</a> and see what you think.  You may be pleasantly surprised.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=226&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2012/06/27/less-obvious-changes-in-eucalyptus-3-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>
	</item>
		<item>
		<title>Moving the Cloud Forward</title>
		<link>http://blog.devzero.com/2012/05/23/moving-the-cloud-forward/</link>
		<comments>http://blog.devzero.com/2012/05/23/moving-the-cloud-forward/#comments</comments>
		<pubDate>Wed, 23 May 2012 18:36:52 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=126</guid>
		<description><![CDATA[It is sort of becoming a tradition for each member of the Fedora Board to declare a personal goal of some sort and then lead by doing. So now that I am the newest Board member, some people are curious about my plans. In 2010 I helped get Fedora&#8217;s Cloud SIG off the ground. At [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=126&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It is sort of becoming a tradition for each member of the Fedora Board to declare a personal goal of some sort and then lead by doing.  So now that I am the newest Board member, some people are curious about my plans.</p>
<p>In 2010 I helped get Fedora&#8217;s <a href="https://fedoraproject.org/wiki/Cloud_SIG">Cloud SIG</a> off the ground.  At that point in time our main goal was to get a modern version of Fedora running inside Amazon&#8217;s popular cloud, EC2.  Nowadays the <a href="http://fedoraproject.org/wiki/Cloud_images">EC2 image</a> is part of Fedora&#8217;s regular release process and the Cloud SIG has grown into one of Fedora&#8217;s most vibrant groups, added support for one self-hosted cloud platform, and is on the way to adding several more.</p>
<p>In light of that, the answer is obvious:  I plan to help the Cloud SIG continue to be successful.</p>
<p>Of course, that&#8217;s a rather vague goal, so here are some examples of what success for the Cloud SIG has meant in the past:</p>
<ul>
<li>Building and testing EC2 images</li>
<li>Adding the EC2-controlling euca2ools command line suite to Fedora</li>
<li>Porting the <a href="https://launchpad.net/cloud-init/">cloud-init</a> boot-time scripts to systemd</li>
</ul>
<p>Now that those are done, here are some things success for the Cloud SIG may mean today:</p>
<ul>
<li>Add more cloud software, such as the relatively venerable <a href="http://www.eucalyptus.com/">Eucalyptus</a>, to Fedora</li>
<li>Continue to stabilize cloud-init on Fedora</li>
<li>Help make <acronym title="Platform as a Service">PaaS</acronym> software like <a href="https://openshift.redhat.com/community/open-source">OpenShift</a> and <a href="http://www.cloudfoundry.com/">Cloud Foundry</a> work with <acronym title="Infrastructure as a Service">IaaS</acronym> software like Eucalyptus and OpenStack</li>
</ul>
<p>Lofty?  Possibly.  But they are certainly all worth the effort!</p>
<p><img src="http://gholms.files.wordpress.com/2012/05/help-1.png?w=300&#038;h=66" alt="We need your help!" title="help-wanted" width="300" height="66" class="size-medium wp-image-138" /></p>
<p>Want to give one of these a shot?  Are you interested in attending a hackfest or an activity day for moving the cloud forward?  Leave a comment or stop by #fedora-cloud on Freenode!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=126&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2012/05/23/moving-the-cloud-forward/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>

		<media:content url="http://gholms.files.wordpress.com/2012/05/help-1.png?w=300" medium="image">
			<media:title type="html">help-wanted</media:title>
		</media:content>
	</item>
		<item>
		<title>Euca2ools: Past, Present, and Future</title>
		<link>http://blog.devzero.com/2012/04/14/euca2ools-past-present-and-future/</link>
		<comments>http://blog.devzero.com/2012/04/14/euca2ools-past-present-and-future/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 00:00:55 +0000</pubDate>
		<dc:creator>gholms</dc:creator>
				<category><![CDATA[eucalyptus]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[euca2ools]]></category>

		<guid isPermaLink="false">http://blog.devzero.com/?p=33</guid>
		<description><![CDATA[For those who don&#8217;t know, I work on the euca2ools suite of command line tools for interacting with Eucalyptus and Amazon Web Services clouds on Launchpad. As of late the project has stagnated somewhat, due in part to the sheer number of different tools it includes. Nearly every command one can send to a server [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=33&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>For those who don&#8217;t know, I work on the <b>euca2ools</b> suite of command line tools for interacting with Eucalyptus and Amazon Web Services clouds on <a href="https://launchpad.net/euca2ools">Launchpad</a>. As of late the project has stagnated somewhat, due in part to the sheer number of different tools it includes. Nearly every command one can send to a server that uses Amazon&#8217;s APIs should have at least one corresponding command line tool, making development of euca2ools&#8217; code repetitive and error-prone.</p>
<p>Today this is going to end.</p>
<p>But before we get to that part, let&#8217;s chronicle how euca2ools got to where they are today.</p>
<h3>The Past</h3>
<p>Early euca2ools versions employed the popular <a href="https://github.com/boto/boto">boto</a> Python library to do their heavy lifting. Each tool of this sort triggers a long chain of events:</p>
<ul>
<li>The tool translates data from the command line into its internal data structures.</li>
<li>The tool translates its internal data into the form that boto expects and then hands it off to boto.</li>
<li>Boto translates the data into the form that the server expects and then sends it to the server.</li>
<li>When the server responds, boto translates its response into a packaged form that is useful for programming and returns it to the tool.</li>
<li>The tool immediately tears that version back apart and translates it into a text-based form that can go back to the command line.</li>
</ul>
<p>Things shouldn&#8217;t be this convoluted. Not in Python.</p>
<h3>The Present</h3>
<p>Tackling this problem involved coming up with ways to simplify not only the code, but also the process through which they are written.  This led to two major changes, upon which all of the current euca2ools code is built.</p>
<h4>&#8220;eucacommand&#8221;</h4>
<p>The first step was consolidating all of the code involved in performing the first step of this process — reading data from the command line — into one location.  Each tool then simply needed to describe what it expected to receive from the command line, and the shared code would take care of the rest.  For example, let&#8217;s look at part of an older command, euca-create-volume:</p>
<pre class="brush: python; title: ; wrap-lines: false; notranslate">
class CreateVolume(EucaCommand):
    Description = 'Creates a volume in a specified availability zone.'
    Options = [Param(name='size', short_name='s', long_name='size',
                     optional=True, ptype='integer',
                     doc='size of the volume (in GiB).'),
               Param(name='snapshot', long_name='snapshot',
                     optional=True, ptype='string',
                     doc=&quot;&quot;&quot;snapshot id to create the volume from.
                     Either size or snapshot can be specified (not both).&quot;&quot;&quot;),
               Param(name='zone', short_name='z', long_name='zone',
                     optional=False, ptype='string',
                     doc='availability zone to create the volume in')]
</pre>
<p>Because there are three <code>Param</code>s the shared code library reads three bits of info from the command line and hands them to the command&#8217;s code, which then hands them to boto, and so on.</p>
<p>This methodology forms the basis for all of the current euca2ools that begin with &#8220;euca&#8221;.</p>
<h4>Roboto</h4>
<p>For a euca2ools command line tool to be useful it has to gather data from the command line, send these data to the server, and return data from the server to the user.  A little-known boto sub-project written by boto developer (and former euca2ools developer) <a href="http://www.elastician.com/">Mitch Garnaat</a>, <b><a href="https://github.com/boto/boto/tree/develop/boto/roboto">roboto</a></b>, takes this statement literally and opts to let tools work at a lower level:  instead of translating data from the command line into an intermediate format to send to boto, tools send these data directly to the server in the form that the server expects.  The effect of this is that of essentially <em>removing boto from the euca2ools code base altogether</em>.  By removing boto from the path that data have to take to get from the command line to the server and back, roboto makes tool writing and debugging simpler because there is less code to walk through and understand.</p>
<p>Roboto is the basis for all of the current euca2ools that begin with &#8220;euare&#8221;.</p>
<h3>The Future</h3>
<p>That is the state of the code today.  Where do we go from here?  While roboto allows one to create command line tools with a minimal amount of effort, it has several rough edges which prevented it from taking off and which make it sub-optimal for building out the hundreds of commands that the euca2ools suite will soon need to cover:</p>
<ul>
<li><b>User-unfriendly</b> — When a user types something wrong or forgets to include something, roboto&#8217;s messages are often uselessly terse and unhelpful.</li>
<li><b>A steeper learning curve than necessary</b> — Roboto contains a large amount of custom code dedicated to fetching information from the command line.  This steepens the learning curve for people who want to contribute code or fix bugs.</li>
<li><b>Too much hardcoding</b> — Roboto assumes that all tools do certain things, such as ascertaining what keys they should use to access the cloud, the same way.</li>
<li><b>Still more work than it has to be</b> — Though it makes writing tools simpler, roboto still hands each tool a bucket of information and expects the tool to pick out the bits the server needs and send them onward.</li>
</ul>
<h4>Enter requestbuilder</h4>
<p><b>Requestbuilder</b> is a new Python library that attempts to rethink the way roboto works in a way that is more familiar to the typical Python developer and requires less custom code to run.  The easiest way to illustrate this is with an example.</p>
<p>A command line tool embodies a specific request to the server, so each such tool defines a Request that describes how it works:</p>
<pre class="brush: python; title: ; wrap-lines: false; notranslate">
class ListUsers(EuareRequest):
    Description = 'List the users who start with a specific path'
    Args = [Arg('-p', '--prefix', dest='PathPrefix', metavar='PREFIX',
                help='list only users whose paths begin with a prefix'),
            Arg('--max-items', type=int, dest='MaxItems',
                help='limit the number of results')]

    def main(self):
        return self.send()

    def print_result(self, result):
        for user in result['Users']:
            print user['Arn']
</pre>
<p>Those familiar with Python&#8217;s argparse library will recognize the code inside <code>Arg(...)</code>, because requestbuilder does away with roboto&#8217;s custom code for reading things off the command line and instead lets argparse do the work.  This cuts down on the amount of code we need to maintain, makes tool writing easier for developers who are already familiar with the Python standard library, and makes command line-related error messages much more user-friendly.</p>
<p>When the tool starts running, requestbuilder uses data from the command line to fill in a dictionary called <code>args</code> and runs the tool&#8217;s <code>main</code> method, whose job is to process this information and fill in the portions of the request that will be sent to the server: <code>params</code>, <code>headers</code>, and <code>post_data</code>, and then run the <code>send</code> method to send it all to the server and retrieve a response.  Attaching each of these sets of data to the request instead of passing them around between methods allows one to send a request, tweak it, and send the tweaked version as well.</p>
<p>Why doesn&#8217;t the code above fill any of these things in?  Since most of the data that comes off the command line goes directly to the server, when a tool runs <code>send</code> requestbuilder will automatically fill in <code>params</code> from the contents of <code>args</code> so the tool doesn&#8217;t have to:  whatever the user supplied with <code>--prefix</code> at the command line gets sent to the server with the name <code>PathPrefix</code>, and so forth.</p>
<p>But what if something should <em>not</em> be sent to the server?  While data from the command line go into <code>params</code> to be sent to the server by default, one can tell requestbuilder to send a particular bit of data elsewhere instead:</p>
<pre class="brush: python; light: true; title: ; wrap-lines: false; notranslate">
Arg('--debug', action='store_true', route_to=None)
</pre>
<p><code>None</code> instructs requestbuilder to leave the &#8220;debug&#8221; flag alone and not attempt to send it anywhere.  Data can also go elsewhere, such as to the connection that gets set up as the tool contacts the server:</p>
<pre class="brush: python; light: true; title: ; wrap-lines: false; notranslate">
Arg('-I', '--access-key-id', dest='aws_access_key_id', route_to=CONNECTION)
</pre>
<p>Astute readers will note that I haven&#8217;t described what <code>EuareRequest</code> in the earlier example does, so here is the code for that:</p>
<pre class="brush: python; title: ; wrap-lines: false; notranslate">
class EuareRequest(BaseRequest):
    ServiceClass = Euare
    Args = [Arg('--delegate', dest='DelegateAccount', metavar='ACCOUNT',
                help='''[Eucalyptus extension] run this command as another
                        account (only usable by cloud administrators)''')]
</pre>
<p>Requestbuilder makes tool writers&#8217; jobs easier by allowing one type of request to inherit its command line options from another type of request and then supply their own by simply listing more of them. This is a little different from the way Python usually works; Requestbuilder does some magic behind the scenes to make this possible. As a result, everything common to commands that access the EUARE service (Eucalyptus&#8217;s equivalent of Amazon&#8217;s IAM service) can go into one place to be shared with others.</p>
<p>The final piece of information requestbuilder needs is a <code>ServiceClass</code>, which describes the web service that the tool connects to.  A service class is another simple bit of code that looks like this:</p>
<pre class="brush: python; title: ; wrap-lines: false; notranslate">
class Euare(BaseService):
    Description = 'Eucalyptus User, Authorization and Reporting Environment'
    APIVersion = '2010-05-08'
    EnvURL = 'EUARE_URL'
</pre>
<p>The net gain from all this is a smaller, but much more flexible code base that should be able to scale better than anything we have had before. Requestbuilder&#8217;s use of Python&#8217;s argparse library also makes tools much more informative to users than ever before.</p>
<h3>How You Can Help</h3>
<p>We&#8217;re developing requestbuilder on <a href="http://github.com/boto/requestbuilder">GitHub</a> as a project under the boto organization.  We&#8217;re going to start rewriting euca2ools, one by one, improving requestbuilder to support new things as we go. It&#8217;s still early on, so if you have ideas to share or you&#8217;re interested in helping develop this code, now is your chance!</p>
<p>We&#8217;re also moving development of euca2ools itself to <a href="http://github.com/eucalyptus/euca2ools">GitHub</a>.  This will make it easier to work on euca2ools and requestbuilder in parallel.  It will also make it easier to share code with the rest of the boto community.</p>
<p>If you&#8217;re interested in getting involved, join us on the #boto or #eucalyptus IRC channels on <a href="http://freenode.net">Freenode.</a>  You can also send e-mail to Eucalyptus&#8217;s <a href="http://lists.eucalyptus.com/cgi-bin/mailman/listinfo/community">community list</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gholms.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gholms.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.devzero.com&#038;blog=34711895&#038;post=33&#038;subd=gholms&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.devzero.com/2012/04/14/euca2ools-past-present-and-future/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/caf2eac128e90a3dee3e67e313fd2d02?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gholms</media:title>
		</media:content>
	</item>
	</channel>
</rss>
