Skip to content
This repository has been archived by the owner on Mar 25, 2018. It is now read-only.

Commit

Permalink
Merge pull request #28 from rackerlabs/rax-fix-readme-links
Browse files Browse the repository at this point in the history
Fixed relative links and changed links to jclouds.org.
  • Loading branch information
etoews committed Apr 1, 2013
2 parents d312730 + cb8fd3f commit 1492f2f
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,59 +7,59 @@ This repository contains various examples of using
<thead><tr><th>project</th><th>description</th></tr></thead>
<tbody>
<tr>
<td><a href="jclouds-examples/tree/master/cloudwatch-basics/">Cloudwatch Basics (Java)</a></td>
<td>Example code to get the total metrics stored for each of your instances the past 24 hours and shows avg/max/min CPU utilization for each instance when possible.</td>
<td><a href="cloudwatch-basics/">Cloudwatch Basics (Java)</a></td>
<td>Example code to get the total metrics stored for each of your instances within the past 24 hours and shows avg/max/min CPU utilization for each instance when possible.</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/compute-basics/">Compute Basics (Java)</a></td>
<td>Example code to add nodes to a group and execute commands on them using the portable <a href="http://code.google.com/p/jclouds/wiki/ComputeGuide">ComputeService API</a></td>
<td><a href="compute-basics/">Compute Basics (Java)</a></td>
<td>Example code to add nodes to a group and execute commands on them using the portable <a href="http://www.jclouds.org/documentation/userguide/compute/">ComputeService API</a></td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/compute-clojure/">Compute Basics (Clojure)</a></td>
<td><a href="compute-clojure/">Compute Basics (Clojure)</a></td>
<td>Example code using <a href="https://github.com/jclouds/jclouds/blob/master/compute/src/main/clojure/org/jclouds/compute2.clj">compute2</a> to create a node, execute a command and destroy the node.</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/minecraft-compute/">Start a Minecraft Server (Java)</a></td>
<td>Example code to add nodes to a group and start Minecraft servers on them using the portable <a href="http://code.google.com/p/jclouds/wiki/ComputeGuide">ComputeService API</a></td>
<td><a href="minecraft-compute/">Start a Minecraft Server (Java)</a></td>
<td>Example code to add nodes to a group and start Minecraft servers on them using the portable <a href="http://www.jclouds.org/documentation/userguide/compute/">ComputeService API</a></td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/blobstore-basics/">BlobStore Basics (Java)</a></td>
<td>Example code to create a container, blob, and list your blobs using the portable <a href="http://code.google.com/p/jclouds/wiki/BlobStore">BlobStore API</a></td>
<td><a href="blobstore-basics/">BlobStore Basics (Java)</a></td>
<td>Example code to create a container, blob, and list your blobs using the portable <a href="http://www.jclouds.org/documentation/userguide/blobstore-guide/">BlobStore API</a></td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/blobstore-clojure/">BlobStore Basic (Clojure)</a></td>
<td><a href="blobstore-clojure/">BlobStore Basics (Clojure)</a></td>
<td>Example code to create a container, and list your containers using the portable <a href="https://github.com/jclouds/jclouds/blob/master/blobstore/src/main/clojure/org/jclouds/blobstore2.clj">blobstore2 functions</a></td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/blobstore-karaf-shell">BlobStore via Karaf Shell</a></td>
<td><a href="blobstore-karaf-shell">BlobStore via Karaf Shell</a></td>
<td>Example to read and write to a blobstore from inside the Apache Karaf Shell.</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/ec2-computeservice-spot/">Use EC2 Extensions in ComputeService (Java)</a></td>
<td>Example code to create a spot instance on <a href="http://code.google.com/p/jclouds/wiki/EC2">EC2</a> using <a href="http://code.google.com/p/jclouds/wiki/ComputeGuide">ComputeService API</a> extensions</td>
<td><a href="ec2-computeservice-spot/">Use EC2 Extensions in ComputeService (Java)</a></td>
<td>Example code to create a spot instance on <a href="http://www.jclouds.org/documentation/userguide/using-ec2/">EC2</a> using <a href="http://www.jclouds.org/documentation/userguide/compute/">ComputeService API</a> extensions</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/ec2-createlamp/">EC2 Create LAMP (Java)</a></td>
<td>Example code to create a LAMP server on <a href="http://code.google.com/p/jclouds/wiki/EC2">EC2</a> using the provider-specific EC2Client</td>
<td><a href="ec2-createlamp/">EC2 Create LAMP (Java)</a></td>
<td>Example code to create a LAMP server on <a href="http://www.jclouds.org/documentation/userguide/using-ec2/">EC2</a> using the provider-specific EC2Client</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/deploy-war-via-ant/">Deploy a webapp (ant)</a></td>
<td><a href="deploy-war-via-ant/">Deploy a webapp (ant)</a></td>
<td>Example code to deploy a web application to the cloud using <a href="http://cargo.codehaus.org/">Cargo</a> and the jclouds ant plugin</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/blobstore-largeblob/">Large Blob support (Java)</a></td>
<td>Example code to create a container and use a parallel strategy to upload a large blob, the portable <a href="http://code.google.com/p/jclouds/wiki/BlobStore">BlobStore API</a></td>
<td><a href="blobstore-largeblob/">Large Blob support (Java)</a></td>
<td>Example code to create a container and use a parallel strategy to upload a large blob, the portable <a href="http://www.jclouds.org/documentation/userguide/blobstore-guide/">BlobStore API</a></td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/camel-notifications/">Camel notifications</a></td>
<td>Example code that uses jclouds from inside Apache Camel routes. The examples provides routes that poll the compute provider for running nodes and sends notifications via email. </td>
<td><a href="camel-notifications/">Camel notifications</a></td>
<td>Example code that uses jclouds from inside Apache Camel routes. The example provides routes that poll the compute provider for running nodes and sends notifications via email. </td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/rackspace/">Rackspace (Java)</a></td>
<td>Example code that uses jclouds to perform common tasks on the Rackspace open cloud.</td>
<td><a href="rackspace/">Rackspace (Java)</a></td>
<td>Example code that uses jclouds to perform common tasks on the <a href="http://www.jclouds.org/documentation/quickstart/rackspace/">Rackspace Cloud</a>.</td>
</tr>
<tr>
<td><a href="jclouds-examples/tree/master/chef-basics/">Chef Basics (Java)</a></td>
<td><a href="chef-basics/">Chef Basics (Java)</a></td>
<td>Example code to add nodes to a group and execute Chef cookbooks on them using Chef Solo or a standard or Hosted Chef Server.</td>
</tr>
</tbody>
Expand Down

0 comments on commit 1492f2f

Please sign in to comment.