Added: websites/staging/libcloud/trunk/content/upgrade-notes-0-7.html ============================================================================== --- websites/staging/libcloud/trunk/content/upgrade-notes-0-7.html (added) +++ websites/staging/libcloud/trunk/content/upgrade-notes-0-7.html Tue Dec 31 14:19:37 2013 @@ -0,0 +1,162 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> +<head> + <title>Apache Libcloud Python library - Upgrade Notes - Libcloud 0.7</title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> + <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> + <script src="/js/clearlink.js" type="text/javascript"></script> + <script src="/js/libcloud.js" type="text/javascript"></script> + <link rel="stylesheet" href="/css/screen.css" type="text/css"> + <link rel="stylesheet" href="/css/libcloud.css" type="text/css"> + <link rel="stylesheet" href="/css/code.css" type="text/css"> + <link rel="stylesheet" href="/css/jquery.tweet.css" type="text/css"> + <link rel="icon" type="image/png" href="/images/favicon.png"/> + <script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-23580482-1']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); +</script> + +</head> +<body> + <div class="container"> + <div id="header" class="span-24 last"> + + <h1>Apache Libcloud <span>a unified interface to the cloud</span></h1> + + </div> + + <div id="banner" class="span-24 last"> + + <h2>Upgrade Notes - Libcloud 0.7</h2> + + </div> + + <div id="feature" class="container"> + + + </div> + + + <div id="sidebar" class="span-8 border"> + +<div id="menu"> + <h2><a href="/">home</a></h2> +<h2><a href="/news.html">news</a></h2> +<h2><a href="/about.html">about</a></h2> +<h2><a href="/getting-started.html">getting started</a></h2> +<h2><a href="/docs/">documentation</a></h2> +<h2><a href="/whos-using.html">who's using libcloud?</a></h2> +<h2><a href="/community-resources.html">community resources</a></h2> +<h2><a href="/devinfo.html">developer information</a></h2> +<h2><a href="/gsoc-2012.html">google summer of code</a></h2> +<h2><a href="/contributing.html">contributing</a></h2> +<h2><a href="/downloads.html">downloads</a></h2> + +</div> + + + +<h3>Get it</h3> +<div id="get-it"> + Latest stable: <a href="/downloads.html">0.13.3</a> (December 31st, 2013)<br /> + <a href="https://crate.io/packages/apache-libcloud/">apache-libcloud PyPi package</a> +</div> + +<h3>Need help?</h3> +<div id="help"> + <a href="http://webchat.freenode.net/?channels=libcloud&uio=d4">#libcloud @ freenode</a><br /> + <a href="mailto:[email protected]">[email protected]</a> +</div> + +<h3>Follow us / Get in Touch</h3> +<div id="help"> + <a href="https://plus.google.com/100590055818889164025" rel="publisher">Apache Libcloud @ Google+</a><br /> + <a href="https://twitter.com/libcloud" rel="publisher">libcloud @ Twitter</a><br /> + <a href="https://www.ohloh.net/p/libcloud/" rel="publisher">libcloud @ Ohloh</a> +</div> + +<h3>What's going on</h3> + +<div id="twitter"> + <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/libcloud" data-widget-id="383960597152284673">Tweets by @libcloud</a> + <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> +</div> + +<h3>Links</h3> +<div id="apache-logo"> + <a href="http://www.apache.org/"><img src="images/apache_logo.gif" alt="Apache + Software Foundation" /></a> +</div> + + + + </div> + + + <div id="main" class="span-16 last"> + + <h2 id="upgrading-from-06x">Upgrading from 0.6.x</h2> +<h3 id="changes">Changes</h3> +<ul> +<li>For consistency, <code>public_ip</code> and <code>private_ip</code> attribute on the <code>Node</code> object +have been renamed to <code>public_ips</code> and <code>private_ips</code> respectively.</li> +</ul> +<p>In 0.7 you can still access those attributes using the old way, but this option +will be removed in the next major release.</p> +<p>Note: If you have places in your code where you directly instantiate a <code>Node</code> +class, you need to update it.</p> +<p>Old code:</p> +<div class="codehilite"><pre><span class="n">node</span> <span class="o">=</span> <span class="n">Node</span><span class="p">(</span><span class="nb">id</span><span class="o">=</span><span class="s">'1'</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="s">'test node'</span><span class="p">,</span> <span class="n">state</span><span class="o">=</span><span class="n">NodeState</span><span class="o">.</span><span class="n">PENDING</span><span class="p">,</span> + <span class="n">private_ip</span><span class="o">=</span><span class="p">[</span><span class="s">'10.0.0.1'</span><span class="p">],</span> <span class="n">public_ip</span><span class="o">=</span><span class="p">[</span><span class="s">'88.77.66.77'</span><span class="p">],</span> + <span class="n">driver</span><span class="o">=</span><span class="n">driver</span><span class="p">)</span> +</pre></div> + + +<p>Updated code:</p> +<div class="codehilite"><pre><span class="n">node</span> <span class="o">=</span> <span class="n">Node</span><span class="p">(</span><span class="nb">id</span><span class="o">=</span><span class="s">'1'</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="s">'test node'</span><span class="p">,</span> <span class="n">state</span><span class="o">=</span><span class="n">NodeState</span><span class="o">.</span><span class="n">PENDING</span><span class="p">,</span> + <span class="n">private_ips</span><span class="o">=</span><span class="p">[</span><span class="s">'10.0.0.1'</span><span class="p">],</span> <span class="n">public_ips</span><span class="o">=</span><span class="p">[</span><span class="s">'88.77.66.77'</span><span class="p">],</span> + <span class="n">driver</span><span class="o">=</span><span class="n">driver</span><span class="p">)</span> +</pre></div> + + +<ul> +<li>Old deprecated paths have been removed. If you still haven't updated your +code you need to do it now, otherwise it won't work with 0.7 and future releases.</li> +</ul> +<p>Bellow is a list of old paths and their new locations:</p> +<ul> +<li><code>libcloud.base</code> -> <code>libcloud.compute.base</code></li> +<li><code>libcloud.deployment</code> -> <code>libcloud.compute.deployment</code></li> +<li><code>libcloud.drivers.*</code> -> <code>libcloud.compute.drivers.*</code></li> +<li><code>libcloud.ssh</code> -> <code>libcloud.compute.ssh</code></li> +<li><code>libcloud.types</code> -> <code>libcloud.compute.types</code></li> +<li><code>libcloud.providers</code> -> <code>libcloud.compute.providers</code></li> +</ul> +<p>In the contrib directory you can also find a simple bash script which can perform +a search and replace for you - <a href="https://svn.apache.org/repos/asf/libcloud/trunk/contrib/migrate_paths.sh">migrate_paths.py</a>.</p> + + </div> + + <div id="footer" class="span-24"> + <a href="http://www.apache.org/licenses/">License</a> | <a + href="/security.html">Security</a> | <a + href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a> | +<a href="http://www.apache.org/foundation/thanks.html">Thanks</a> | <a + href="/credits.html">Credits</a> | <a href="/sitemap.html">Sitemap</a><br /><br /> + +Copyright © 2009-2013, <a href="http://apache.org/">The Apache Software Foundation</a><br /> +Apache Libcloud, Libcloud, Apache, the Apache feather, and the Apache Libcloud +project logo are trademarks of the Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. + + </div> + </div> +</body> +</html>
Added: websites/staging/libcloud/trunk/content/upgrade-notes-0-8.html ============================================================================== --- websites/staging/libcloud/trunk/content/upgrade-notes-0-8.html (added) +++ websites/staging/libcloud/trunk/content/upgrade-notes-0-8.html Tue Dec 31 14:19:37 2013 @@ -0,0 +1,136 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> +<head> + <title>Apache Libcloud Python library - Upgrade Notes - Libcloud 0.8</title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> + <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> + <script src="/js/clearlink.js" type="text/javascript"></script> + <script src="/js/libcloud.js" type="text/javascript"></script> + <link rel="stylesheet" href="/css/screen.css" type="text/css"> + <link rel="stylesheet" href="/css/libcloud.css" type="text/css"> + <link rel="stylesheet" href="/css/code.css" type="text/css"> + <link rel="stylesheet" href="/css/jquery.tweet.css" type="text/css"> + <link rel="icon" type="image/png" href="/images/favicon.png"/> + <script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-23580482-1']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); +</script> + +</head> +<body> + <div class="container"> + <div id="header" class="span-24 last"> + + <h1>Apache Libcloud <span>a unified interface to the cloud</span></h1> + + </div> + + <div id="banner" class="span-24 last"> + + <h2>Upgrade Notes - Libcloud 0.8</h2> + + </div> + + <div id="feature" class="container"> + + + </div> + + + <div id="sidebar" class="span-8 border"> + +<div id="menu"> + <h2><a href="/">home</a></h2> +<h2><a href="/news.html">news</a></h2> +<h2><a href="/about.html">about</a></h2> +<h2><a href="/getting-started.html">getting started</a></h2> +<h2><a href="/docs/">documentation</a></h2> +<h2><a href="/whos-using.html">who's using libcloud?</a></h2> +<h2><a href="/community-resources.html">community resources</a></h2> +<h2><a href="/devinfo.html">developer information</a></h2> +<h2><a href="/gsoc-2012.html">google summer of code</a></h2> +<h2><a href="/contributing.html">contributing</a></h2> +<h2><a href="/downloads.html">downloads</a></h2> + +</div> + + + +<h3>Get it</h3> +<div id="get-it"> + Latest stable: <a href="/downloads.html">0.13.3</a> (December 31st, 2013)<br /> + <a href="https://crate.io/packages/apache-libcloud/">apache-libcloud PyPi package</a> +</div> + +<h3>Need help?</h3> +<div id="help"> + <a href="http://webchat.freenode.net/?channels=libcloud&uio=d4">#libcloud @ freenode</a><br /> + <a href="mailto:[email protected]">[email protected]</a> +</div> + +<h3>Follow us / Get in Touch</h3> +<div id="help"> + <a href="https://plus.google.com/100590055818889164025" rel="publisher">Apache Libcloud @ Google+</a><br /> + <a href="https://twitter.com/libcloud" rel="publisher">libcloud @ Twitter</a><br /> + <a href="https://www.ohloh.net/p/libcloud/" rel="publisher">libcloud @ Ohloh</a> +</div> + +<h3>What's going on</h3> + +<div id="twitter"> + <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/libcloud" data-widget-id="383960597152284673">Tweets by @libcloud</a> + <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> +</div> + +<h3>Links</h3> +<div id="apache-logo"> + <a href="http://www.apache.org/"><img src="images/apache_logo.gif" alt="Apache + Software Foundation" /></a> +</div> + + + + </div> + + + <div id="main" class="span-16 last"> + + <h2 id="upgrading-from-07x">Upgrading from 0.7.x</h2> +<h3 id="changes">Changes</h3> +<ul> +<li> +<p><code>restart_node</code> method has been removed from the OpenNebula compute driver, + because OpenNebula OCCI implementation does not support a proper restart + method.</p> +</li> +<li> +<p><code>ex_save_image</code> method in the OpenStack driver now returns a <code>NodeImage</code> + instance.</p> +</li> +</ul> + + </div> + + <div id="footer" class="span-24"> + <a href="http://www.apache.org/licenses/">License</a> | <a + href="/security.html">Security</a> | <a + href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a> | +<a href="http://www.apache.org/foundation/thanks.html">Thanks</a> | <a + href="/credits.html">Credits</a> | <a href="/sitemap.html">Sitemap</a><br /><br /> + +Copyright © 2009-2013, <a href="http://apache.org/">The Apache Software Foundation</a><br /> +Apache Libcloud, Libcloud, Apache, the Apache feather, and the Apache Libcloud +project logo are trademarks of the Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. + + </div> + </div> +</body> +</html> Added: websites/staging/libcloud/trunk/content/upgrade-notes.html ============================================================================== --- websites/staging/libcloud/trunk/content/upgrade-notes.html (added) +++ websites/staging/libcloud/trunk/content/upgrade-notes.html Tue Dec 31 14:19:37 2013 @@ -0,0 +1,132 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> +<head> + <title>Apache Libcloud Python library - Upgrade Notes</title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> + <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> + <script src="/js/clearlink.js" type="text/javascript"></script> + <script src="/js/libcloud.js" type="text/javascript"></script> + <link rel="stylesheet" href="/css/screen.css" type="text/css"> + <link rel="stylesheet" href="/css/libcloud.css" type="text/css"> + <link rel="stylesheet" href="/css/code.css" type="text/css"> + <link rel="stylesheet" href="/css/jquery.tweet.css" type="text/css"> + <link rel="icon" type="image/png" href="/images/favicon.png"/> + <script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-23580482-1']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); +</script> + +</head> +<body> + <div class="container"> + <div id="header" class="span-24 last"> + + <h1>Apache Libcloud <span>a unified interface to the cloud</span></h1> + + </div> + + <div id="banner" class="span-24 last"> + + <h2>Upgrade Notes</h2> + + </div> + + <div id="feature" class="container"> + + + </div> + + + <div id="sidebar" class="span-8 border"> + +<div id="menu"> + <h2><a href="/">home</a></h2> +<h2><a href="/news.html">news</a></h2> +<h2><a href="/about.html">about</a></h2> +<h2><a href="/getting-started.html">getting started</a></h2> +<h2><a href="/docs/">documentation</a></h2> +<h2><a href="/whos-using.html">who's using libcloud?</a></h2> +<h2><a href="/community-resources.html">community resources</a></h2> +<h2><a href="/devinfo.html">developer information</a></h2> +<h2><a href="/gsoc-2012.html">google summer of code</a></h2> +<h2><a href="/contributing.html">contributing</a></h2> +<h2><a href="/downloads.html">downloads</a></h2> + +</div> + + + +<h3>Get it</h3> +<div id="get-it"> + Latest stable: <a href="/downloads.html">0.13.3</a> (December 31st, 2013)<br /> + <a href="https://crate.io/packages/apache-libcloud/">apache-libcloud PyPi package</a> +</div> + +<h3>Need help?</h3> +<div id="help"> + <a href="http://webchat.freenode.net/?channels=libcloud&uio=d4">#libcloud @ freenode</a><br /> + <a href="mailto:[email protected]">[email protected]</a> +</div> + +<h3>Follow us / Get in Touch</h3> +<div id="help"> + <a href="https://plus.google.com/100590055818889164025" rel="publisher">Apache Libcloud @ Google+</a><br /> + <a href="https://twitter.com/libcloud" rel="publisher">libcloud @ Twitter</a><br /> + <a href="https://www.ohloh.net/p/libcloud/" rel="publisher">libcloud @ Ohloh</a> +</div> + +<h3>What's going on</h3> + +<div id="twitter"> + <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/libcloud" data-widget-id="383960597152284673">Tweets by @libcloud</a> + <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> +</div> + +<h3>Links</h3> +<div id="apache-logo"> + <a href="http://www.apache.org/"><img src="images/apache_logo.gif" alt="Apache + Software Foundation" /></a> +</div> + + + + </div> + + + <div id="main" class="span-16 last"> + + <h2 id="upgrade-notes">Upgrade Notes</h2> +<p>This page describes a process of upgrading from a previous version to a new +one. It also describes backward incompatible or semi-incompatible changes +and how to preserve the old behavior when this is possible.</p> +<ul> +<li><a href="/upgrade-notes-0-8.html">Libcloud 0.8</a></li> +<li><a href="/upgrade-notes-0-7.html">Libcloud 0.7</a></li> +<li><a href="/upgrade-notes-0-6.html">Libcloud 0.6</a></li> +</ul> + + </div> + + <div id="footer" class="span-24"> + <a href="http://www.apache.org/licenses/">License</a> | <a + href="/security.html">Security</a> | <a + href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a> | +<a href="http://www.apache.org/foundation/thanks.html">Thanks</a> | <a + href="/credits.html">Credits</a> | <a href="/sitemap.html">Sitemap</a><br /><br /> + +Copyright © 2009-2013, <a href="http://apache.org/">The Apache Software Foundation</a><br /> +Apache Libcloud, Libcloud, Apache, the Apache feather, and the Apache Libcloud +project logo are trademarks of the Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. + + </div> + </div> +</body> +</html> Added: websites/staging/libcloud/trunk/content/whos-using.html ============================================================================== --- websites/staging/libcloud/trunk/content/whos-using.html (added) +++ websites/staging/libcloud/trunk/content/whos-using.html Tue Dec 31 14:19:37 2013 @@ -0,0 +1,196 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> +<html> +<head> + <title>Apache Libcloud Python library - Projects and companies using libcloud</title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script> + <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js" type="text/javascript"></script> + <script src="/js/clearlink.js" type="text/javascript"></script> + <script src="/js/libcloud.js" type="text/javascript"></script> + <link rel="stylesheet" href="/css/screen.css" type="text/css"> + <link rel="stylesheet" href="/css/libcloud.css" type="text/css"> + <link rel="stylesheet" href="/css/code.css" type="text/css"> + <link rel="stylesheet" href="/css/jquery.tweet.css" type="text/css"> + <link rel="icon" type="image/png" href="/images/favicon.png"/> + <script type="text/javascript"> + var _gaq = _gaq || []; + _gaq.push(['_setAccount', 'UA-23580482-1']); + _gaq.push(['_trackPageview']); + + (function() { + var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; + ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; + var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); + })(); +</script> + +</head> +<body> + <div class="container"> + <div id="header" class="span-24 last"> + + <h1>Apache Libcloud <span>a unified interface to the cloud</span></h1> + + </div> + + <div id="banner" class="span-24 last"> + + <h2>Projects and companies using libcloud</h2> + + </div> + + <div id="feature" class="container"> + + + </div> + + + <div id="sidebar" class="span-8 border"> + +<div id="menu"> + <h2><a href="/">home</a></h2> +<h2><a href="/news.html">news</a></h2> +<h2><a href="/about.html">about</a></h2> +<h2><a href="/getting-started.html">getting started</a></h2> +<h2><a href="/docs/">documentation</a></h2> +<h2><a href="/whos-using.html">who's using libcloud?</a></h2> +<h2><a href="/community-resources.html">community resources</a></h2> +<h2><a href="/devinfo.html">developer information</a></h2> +<h2><a href="/gsoc-2012.html">google summer of code</a></h2> +<h2><a href="/contributing.html">contributing</a></h2> +<h2><a href="/downloads.html">downloads</a></h2> + +</div> + + + +<h3>Get it</h3> +<div id="get-it"> + Latest stable: <a href="/downloads.html">0.13.3</a> (December 31st, 2013)<br /> + <a href="https://crate.io/packages/apache-libcloud/">apache-libcloud PyPi package</a> +</div> + +<h3>Need help?</h3> +<div id="help"> + <a href="http://webchat.freenode.net/?channels=libcloud&uio=d4">#libcloud @ freenode</a><br /> + <a href="mailto:[email protected]">[email protected]</a> +</div> + +<h3>Follow us / Get in Touch</h3> +<div id="help"> + <a href="https://plus.google.com/100590055818889164025" rel="publisher">Apache Libcloud @ Google+</a><br /> + <a href="https://twitter.com/libcloud" rel="publisher">libcloud @ Twitter</a><br /> + <a href="https://www.ohloh.net/p/libcloud/" rel="publisher">libcloud @ Ohloh</a> +</div> + +<h3>What's going on</h3> + +<div id="twitter"> + <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/libcloud" data-widget-id="383960597152284673">Tweets by @libcloud</a> + <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> +</div> + +<h3>Links</h3> +<div id="apache-logo"> + <a href="http://www.apache.org/"><img src="images/apache_logo.gif" alt="Apache + Software Foundation" /></a> +</div> + + + + </div> + + + <div id="main" class="span-16 last"> + + <h2 id="whos-using-libcloud">Who's Using Libcloud?</h2> +<p>If you or someone you know is using libcloud, <a href="/devinfo.html">let us know</a>.</p> +<h2 id="projects">Projects</h2> +<p><strong>Name:</strong> mist.io<br /> +<strong>Website:</strong> <a href="https://github.com/mistio/mist.io">https://github.com/mistio/mist.io</a><br /> +<strong>Description:</strong> Mist.io is an open source software and a hosted service that helps you manage and monitor your servers across several cloud from any web device. </p> +<p><strong>Name:</strong> Dewpoint<br /> +<strong>Website:</strong> <a href="https://github.com/secondstory/dewpoint">https://github.com/secondstory/dewpoint</a><br /> +<strong>Description:</strong> A command line tool for cloud computing. </p> +<p><strong>Name:</strong> felicity<br /> +<strong>Website:</strong> <a href="https://github.com/mig5/felicity">https://github.com/mig5/felicity</a><br /> +<strong>Description:</strong> A Python script for performing backups to different clouds. </p> +<p><strong>Name:</strong> Frigg<br /> +<strong>Website:</strong> <a href="https://github.com/mig5/frigg">https://github.com/mig5/frigg</a><br /> +<strong>Description:</strong> Script for provisioning a server and installing <a href="http://aegirproject.org/">Aegir</a> on it. </p> +<p><strong>Name:</strong> fusefs-cloudstorage<br /> +<strong>Website:</strong> <a href="https://github.com/novel/fusefs-cloudstorage">https://github.com/novel/fusefs-cloudstorage</a><br /> +<strong>Description:</strong> FUSE-based filesystem for accessing cloud storage such as Rackspace CloudFiles and Amazon S3.</p> +<p><strong>Name:</strong> Kraftwerk<br /> +<strong>Website:</strong> <a href="https://github.com/jokull/kraftwerk">https://github.com/jokull/kraftwerk</a><br /> +<strong>Description:</strong> Command line utility that enables easier deployment and commissioning of cloud servers.</p> +<p><strong>Name:</strong> lc-tools<br /> +<strong>Website:</strong> <a href="http://novel.github.com/lc-tools/">http://novel.github.com/lc-tools/</a> +<strong>Description:</strong> A set of command line tools for controlling various clouds.</p> +<p><strong>Name:</strong> OOI Cyberinfrastructure<br /> +<strong>Website:</strong> <a href="http://ci.oceanobservatories.org/">http://ci.oceanobservatories.org/</a><br /> +<strong>Description:</strong> Interfacing with a wide variety of software packages and computational resource providers. </p> +<p><strong>Name:</strong> overmind<br /> +<strong>Website:</strong> <a href="https://github.com/tobami/overmind">https://github.com/tobami/overmind</a><br /> +<strong>Description:</strong> A complete server provisioning and configuration management application. </p> +<p><strong>Name:</strong> rackspace-monitoring<br /> +<strong>Website:</strong> <a href="https://github.com/racker/rackspace-monitoring">https://github.com/racker/rackspace-monitoring</a><br /> +<strong>Description:</strong> Library for Rackspace Cloud Monitoring API built on the libcloud framework.</p> +<p><strong>Name:</strong> rocket<br /> +<strong>Website:</strong> <a href="https://github.com/ssimasanti/rockets">https://github.com/ssimasanti/rockets</a><br /> +<strong>Description:</strong> Cloud server management tool using fabric, libcloud and Django CLI. </p> +<p><strong>Name:</strong> Silver Lining<br /> +<strong>Website:</strong> <a href="http://cloudsilverlining.org/">http://cloudsilverlining.org/</a><br /> +<strong>Description:</strong> Application for painless and simple deployment of Python and PHP applications to the Ubuntu based cloud servers. </p> +<p><strong>Name:</strong> madelon<br /> +<strong>Website:</strong> <a href="https://github.com/mig5/madelon">https://github.com/mig5/madelon</a><br /> +<strong>Description:</strong> libcloud-api wrapper to provision a server & run puppet manifests on it. </p> +<p><strong>Name:</strong> CeleryManagement<br /> +<strong>Website:</strong> <a href="http://bmbouter.github.com/CeleryManagement/">http://bmbouter.github.com/CeleryManagement/</a><br /> +<strong>Description:</strong> Allows users to manage and in dynamic mode automatically provision celery works on the cloud. <br /> +<strong>Source code:</strong> <a href="https://github.com/bmbouter/CeleryManagement">https://github.com/bmbouter/CeleryManagement</a></p> +<p><strong>Name:</strong> provision<br /> +<strong>Website:</strong> <a href="https://github.com/genforma/provision">https://github.com/genforma/provision</a><br /> +<strong>Description:</strong> Provision enables users to deploy customized nodes, either via shell commands, or as a Python library. <br /> +<strong>Source code:</strong> <a href="https://github.com/genforma/provision">https://github.com/genforma/provision</a></p> +<p><strong>Name:</strong> Salt Cloud<br /> +<strong>Website:</strong> <a href="http://saltstack.org">http://saltstack.org</a><br /> +<strong>Description:</strong> Salt Cloud is a cloud provisioning system that makes extensiveuse of libcloud to provision and manage cloud vms. It is primarily used toautomate the setup of cloud vms and make them check back into Salt. <br /> +<strong>Source code:</strong> <a href="https://github.com/saltstack/salt-cloud">https://github.com/saltstack/salt-cloud</a></p> +<p><strong>Name:</strong> Monash eScience and Grid Engineering Laboratory<br /> +<strong>Website:</strong> <a href="http://www.messagelab.monash.edu.au/Nimrod">http://www.messagelab.monash.edu.au/Nimrod</a><br /> +<strong>Description:</strong> A toolkit for scheduling and distributing embarrassingly parallel parameter driven sweeps across heterogeneous compute resources.</p> +<h2 id="companies">Companies</h2> +<p><strong>Name:</strong> mist.io <br /> +<strong>Website:</strong> <a href="https://mist.io">https://mist.io</a> </p> +<p><strong>Name:</strong> Cloudkick<br /> +<strong>Website:</strong> <a href="https://www.cloudkick.com">https://www.cloudkick.com</a><br /> +<strong>Reference:</strong> <a href="https://www.cloudkick.com/blog/2009/jul/23/libcloud-announced/">Announcing libcloud</a></p> +<p><strong>Name:</strong> GlobalRoute<br /> +<strong>Website:</strong> <a href="http://globalroute.net">http://globalroute.net/</a></p> +<p><strong>Name:</strong> Server Density<br /> +<strong>Website:</strong> <a href="http://www.serverdensity.com/">http://www.serverdensity.com/</a><br /> +<strong>Reference:</strong> <a href="http://blog.boxedice.com/2010/03/04/using-vcloud-and-amazon-cloudwatch-with-libcloud/">Using vCloud and Amazon CloudWatch with libcloud</a></p> +<p><strong>Name:</strong> CollabNet<br /> +<strong>Website:</strong> <a href="http://www.collab.net/">http://www.collab.net/</a><br /> +<strong>Reference:</strong> <a href="http://www.itnewsonline.com/showprnstory.php?storyid=215128">CollabNet Automates Build, Test And DevOps In The Cloud With New Version Of CollabNet Lab Management</a></p> +<p><strong>Name:</strong> Salt Stack<br /> +<strong>Website:</strong> <a href="http://saltstack.com/">http://saltstack.com/</a> </p> + + </div> + + <div id="footer" class="span-24"> + <a href="http://www.apache.org/licenses/">License</a> | <a + href="/security.html">Security</a> | <a + href="http://www.apache.org/foundation/sponsorship.html">Sponsorship</a> | +<a href="http://www.apache.org/foundation/thanks.html">Thanks</a> | <a + href="/credits.html">Credits</a> | <a href="/sitemap.html">Sitemap</a><br /><br /> + +Copyright © 2009-2013, <a href="http://apache.org/">The Apache Software Foundation</a><br /> +Apache Libcloud, Libcloud, Apache, the Apache feather, and the Apache Libcloud +project logo are trademarks of the Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners. + + </div> + </div> +</body> +</html>
