Class: Skewer::Eucalyptus
- Inherits:
-
Object
- Object
- Skewer::Eucalyptus
- Defined in:
- lib/eucalyptus.rb
Overview
instantiates a eucalyptus endpoint
Instance Method Summary collapse
-
#initialize ⇒ Eucalyptus
constructor
A new instance of Eucalyptus.
Constructor Details
#initialize ⇒ Eucalyptus
Returns a new instance of Eucalyptus.
7 8 9 10 11 12 13 |
# File 'lib/eucalyptus.rb', line 7 def initialize compute = Fog::Compute.new({ :provider => 'AWS', :endpoint => 'http://localhost:4567' }) @node = compute.servers.bootstrap() end |