Skip to content

Instantly share code, notes, and snippets.

@etoews
Last active October 11, 2015 12:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save etoews/3862453 to your computer and use it in GitHub Desktop.
Save etoews/3862453 to your computer and use it in GitHub Desktop.
jclouds workshop
public static void main(String[] args) {
JCloudsWorkshop jcloudsWorkshop = new JCloudsWorkshop();
try {
jcloudsWorkshop.init();
jcloudsWorkshop.createNodes();
jcloudsWorkshop.configureAndStartWebservers();
jcloudsWorkshop.detectExtensions();
jcloudsWorkshop.printResults();
// jcloudsWorkshop.deleteNodes();
}
catch (Throwable e) {
e.printStackTrace();
}
finally {
jcloudsWorkshop.close();
}
}
private void init() {
}
private void createNodes() {
}
private void configureAndStartWebservers() {
}
private void detectExtensions() {
}
private void printResults() throws IOException {
}
private void deleteNodes() {
}
private void close() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment