The Java Multi-Cloud Toolkit
Go to file
Adrian Cole f391aff38e added link to examples 2011-06-04 22:49:24 -07:00
all Issue 551: initial support for rackspace cloud load balancers 2011-05-09 01:27:01 -07:00
allblobstore Issue 594: move google storage back to sandbox 2011-06-02 20:32:03 -07:00
allcompute Issue 593:add rimu hosting to supported providers list 2011-06-02 16:22:50 -07:00
allloadbalancer added jclouds-allloadbalancer module 2011-05-09 01:28:17 -07:00
antcontrib Merge commit '7d0248c5dd972287e51ad1971d61a6ddc8bdcdf5' 2011-06-01 20:37:49 +04:00
apis Issue 80: public acl for atmos 2011-06-03 02:07:12 -07:00
archetypes [issue 531] Archetypes now inherit from jclouds-project, which fixes the site structure 2011-05-03 14:44:30 -04:00
assemblies Issue 458: updated dist to include scriptbuilder and adjusted dependencies for gae and enterprise 2011-02-01 10:17:40 -08:00
blobstore Issue 80: public acl for atmos 2011-06-03 02:07:12 -07:00
common Merge commit '6d187ed9baaad1e00dbe65b36ea2989c951a5a28', ssh client patch is reverted due to massive changes in code 2011-06-03 03:50:47 +04:00
compute Merge commit '6d187ed9baaad1e00dbe65b36ea2989c951a5a28', ssh client patch is reverted due to massive changes in code 2011-06-03 03:50:47 +04:00
core Merge commit '6d187ed9baaad1e00dbe65b36ea2989c951a5a28', ssh client patch is reverted due to massive changes in code 2011-06-03 03:50:47 +04:00
demos ${version}.${tweetstore.instance} -> ${version}-${tweetstore.instance} for jclouds.properties remote resource version as it's closer to using a classifier (not supported by the plugin) 2011-06-03 15:02:55 +02:00
drivers Merge commit '6d187ed9baaad1e00dbe65b36ea2989c951a5a28', ssh client patch is reverted due to massive changes in code 2011-06-03 03:50:47 +04:00
loadbalancer moved maven-bundle-plugin instructions to top project pom 2011-05-16 09:14:12 -03:00
project fixed test http url 2011-05-29 20:41:04 -07:00
providers Issue 550: added PM for cloudsigma 2011-06-03 02:35:12 -07:00
resources [issue 535] Moved LICENSE.txt to META-INF in the resource bundle 2011-04-19 15:32:33 -04:00
sandbox-apis Merge branch 'master' of https://github.com/dmitri-b/jclouds 2011-06-02 17:08:29 -07:00
sandbox-drivers/asynchttpclient moved maven-bundle-plugin instructions to top project pom 2011-05-16 09:14:12 -03:00
sandbox-providers Issue 594: move google storage back to sandbox 2011-06-02 20:32:03 -07:00
scriptbuilder Merge commit '6d187ed9baaad1e00dbe65b36ea2989c951a5a28', ssh client patch is reverted due to massive changes in code 2011-06-03 03:50:47 +04:00
skeletons Merge commit '7d0248c5dd972287e51ad1971d61a6ddc8bdcdf5' 2011-06-01 20:37:49 +04:00
.gitignore Issue 550: Added ProviderMetadata for Elastic Hosts. 2011-06-02 21:40:33 -03:00
README.txt added link to examples 2011-06-04 22:49:24 -07:00
pom.xml added jclouds-allloadbalancer module 2011-05-09 01:28:17 -07:00

README.txt

Overview:
 
jclouds is an open source library that helps you get started in the cloud
and reuse your java and clojure development skills. Our api allows you to 
freedom to use portable abstractions or cloud-specific features.  We have
two abstractions at the moment: compute and blobstore.  compute helps you
bootstrap machines in the cloud.  blobstore helps you manage key-value
data.
 
our current version is 1.0.0
our dev version is 1.0-SNAPSHOT
 
check out our examples site! https://github.com/jclouds/jclouds-examples

our compute api supports: aws-ec2, gogrid, cloudservers-us, stub (in-memory), deltacloud,
                          cloudservers-uk, vcloud (generic), ec2 (generic), byon, nova,
                          trmk-ecloud, trmk-vcloudexpress, eucalyptus (generic),
                          cloudsigma-zrh, elasticstack(generic), bluelock-vcloud-vcenterprise,
                          bluelock-vcloud-zone01, stratogen-vcloud-mycloud, rimuhosting,
                          slicehost, eucalyptus-partnercloud-ec2, elastichosts-lon-p (Peer 1), 
                          elastichosts-sat-p (Peer 1), elastichosts-lon-b (BlueSquare),
                          openhosting-east1, serverlove-z1-man, skalicloud-sdg-my

  * note * the pom dependency org.jclouds/jclouds-allcompute gives you access to
           to all of these providers

our blobstore api supports: aws-s3, cloudfiles-us, cloudfiles-uk, filesystem,
                            azureblob, atmos (generic), synaptic-storage, 
                            cloudonestorage, walrus(generic), ninefold-storage,
                            eucalyptus-partnercloud-s3, swift (generic), transient (in-mem)
 
  * note * the pom dependency org.jclouds/jclouds-allblobstore gives you access to
           to all of these providers

our loadbalancer api supports: cloudloadbalancers-us
 
  * note * the pom dependency org.jclouds/jclouds-allloadbalancer gives you access to
           to all of these providers

we also have support for: ibmdev, mezeo, nirvanix, boxdotnet, openstack nova, scality ring,
                          hosteurope-storage, tiscali-storage, scaleup-storage, googlestorage,
                          azurequeue, simpledb, cloudstack as well as a async-http-client
                          driver in the sandbox


If you want access to all jclouds components, include the maven dependency org.jclouds/jclouds-all


BlobStore Example (Java):
  // init
  context = new BlobStoreContextFactory().createContext(
                  "aws-s3",
                  accesskeyid,
                  secretaccesskey);
  blobStore = context.getBlobStore();
 
  // create container
  blobStore.createContainerInLocation(null, "mycontainer");
  
  // add blob
  blob = blobStore.blobBuilder("test").payload("testdata").build();
  blobStore.putBlob("mycontainer", blob);

BlobStore Example (Clojure):
  (use 'org.jclouds.blobstore2)

  (def *blobstore* (blobstore "azureblob" account encodedkey))
  (create-container *blobstore* "mycontainer")
  (put-blob *blobstore* "mycontainer" (blob "test" :payload "testdata"))

Compute Example (Java):
  // init
  context = new ComputeServiceContextFactory().createContext(
                  "aws-ec2",
                  accesskeyid,
                  secretaccesskey,
                  ImmutableSet.of(new Log4JLoggingModule(),
                                  new JschSshClientModule()));
  client = context.getComputeService();
 
  // define the requirements of your node
  template = client.templateBuilder().osFamily(UBUNTU).smallest().build();

  // setup a boot user which is the same as your login
  template.getOptions().runScript(AdminAccess.standard());
 
  // these nodes will be accessible via ssh when the call returns
  nodes = client.createNodesInGroup("mycluster", 2, template);

  // you can now run ad-hoc commands on the nodes based on predicates
  responses = client.runScriptOnNodesMatching(inGroup("mycluster"), "uptime",
                  wrapInInitScript(false));

Compute Example (Clojure):
  (use 'org.jclouds.compute2)

  ; create a compute service using ssh and log4j extensions
  (def compute 
    (*compute* "trmk`-ecloud" "user" "password" :ssh :log4j))

  ; launch a couple nodes with the default operating system, installing your user.
  (create-nodes *compute* "mycluster" 2
    (TemplateOptions$Builder/runScript (AdminAccess/standard)))
 
  ; run a command on that group
  (run-script-on-nodes-matching *compute* (in-group? "mycluster") "uptime" 
    (RunScriptOptions$Builder/wrapInInitScript false))

Downloads:
  * installation guide: http://code.google.com/p/jclouds/wiki/Installation
  * maven repo: http://repo2.maven.org/maven2 (maven central - the default repository)
  * snapshot repo: https://oss.sonatype.org/content/repositories/snapshots
 
Links:
  * project page: http://code.google.com/p/jclouds/
  * javadocs: http://jclouds.rimuhosting.com/apidocs/
  * community: http://code.google.com/p/jclouds/wiki/AppsThatUseJClouds
  * user group: http://groups.google.com/group/jclouds
  * dev group: http://groups.google.com/group/jclouds-dev
  * twitter: http://twitter.com/jclouds

## License

Copyright (C) 2011 Cloud Conscious, LLC. <info@cloudconscious.com>

Licensed under the Apache License, Version 2.0