]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - 3rdparty/modules/aviator/README
Revert "add aimonb/aviator to 3rdparty"
[dsa-puppet.git] / 3rdparty / modules / aviator / README
diff --git a/3rdparty/modules/aviator/README b/3rdparty/modules/aviator/README
deleted file mode 100644 (file)
index db81dbe..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-Puppet Aviator
-
-A feature module for the Aviator project.
-
-Aviator is a lightweight library for communicating with the OpenStack
-API
-
-See Aviator_README.md for more information on Aviator.
-
-License
--------
-MIT License
-
-Contact
--------
-Aimon Bustardo <me at aimon dot net>
-
-Example Usage:
--------
-    
-    $LOAD_PATH.push(File.join(File.dirname(__FILE__), '..', '..',
-'..'))
-    require 'puppet/feature/aviator'
-   
-    configuration = {
-        :provider => 'openstack',
-        :auth_service => {
-            :name      => 'identity',
-            :host_uri  => 'http://devstack:5000/v2.0',
-            :request   => 'create_token',
-            :validator => 'list_tenants'
-        },
-        :auth_credentials => {
-            :username    => 'myusername',
-            :password    => 'mypassword',
-            :tenant_name => 'myproject'
-        }
-    }
-
-    openstack = Aviator::Session.new(:config => configuration)
-
-    openstack.authenticate
-    response = openstack.request :identity_service, :list_tenants, :endpoint_type => 'admin'
-
-    puts response[:body]