Sha256: 62dd7b22c0d8cb3ceaf29c989acd555e51dcb3d9cbef63b1f9ad00bd9e5418e4

Contents?: true

Size: 1.1 KB

Versions: 34

Compression:

Stored size: 1.1 KB

Contents

# VmShepherd [![Build Status](https://travis-ci.org/pivotal-cf-experimental/vm_shepherd.svg)](https://travis-ci.org/pivotal-cf-experimental/vm_shepherd)

Gem for deploying and destroying a VM on different IAASs such as AWS, vSphere, vCloud, and Openstack

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'vm_shepherd'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install vm_shepherd

## Usage

```ruby
require 'vm_shepherd'

settings =  # A Hash with the expected IaaS specific settings.
            # => See YAML under spec/fixtures/shepherd/ for expected values

# create a new VM
shep = VmShepherd::Shepherd.new(settings: settings)
shep.deploy(path: 'path/to/vm.image')

# destroy an existing VM
shep = VmShepherd::Shepherd.new(settings: settings)
shep.destroy
```

## Contributing

1. Fork it ( https://github.com/pivotal-cf-experimental/vm_shepherd/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
vm_shepherd-3.1.4 README.md
vm_shepherd-3.1.3 README.md
vm_shepherd-3.1.2 README.md
vm_shepherd-3.1.1 README.md
vm_shepherd-3.1.0 README.md
vm_shepherd-3.0.8 README.md
vm_shepherd-3.0.7 README.md
vm_shepherd-3.0.6 README.md
vm_shepherd-3.0.5 README.md
vm_shepherd-3.0.4 README.md
vm_shepherd-3.0.3 README.md
vm_shepherd-3.0.2 README.md
vm_shepherd-3.0.1 README.md
vm_shepherd-3.0.0 README.md