aviator
Puppet feature wrapper for the Aviator OpenStack API library for Ruby
Version information
released Dec 14th 2014
Start using this module
Add this module to your Puppetfile:
mod 'aimonb-aviator', '0.5.1'
Learn more about managing modules with a PuppetfileDocumentation
aimonb/aviator — version 0.5.1 Dec 14th 2014
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
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]