Sha256: b7458895cf6d04ea2a8fbe0f5781959be95275b866194c29648a1afed76e59ea

Contents?: true

Size: 1.9 KB

Versions: 4

Compression:

Stored size: 1.9 KB

Contents

# Fog::Ovirt

fog-ovirt is an ovirt provider for [fog](https://github.com/fog/fog).

## Installation

Add this line to your application's Gemfile:

```ruby
gem 'fog-ovirt'
```

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install fog-ovirt

## Usage

Require the gem:
```ruby
require 'fog/ovirt' 
```

Connect to ovirt instance:
```ruby

compute = Fog::Compute.new(
          :provider         => "ovirt",
          :ovirt_username   => user,
          :ovirt_password   => password,
          :ovirt_url        => url,
          :ovirt_datacenter => uuid,
          :ovirt_ca_cert_store => ca_cert_store
      )
```

## API Support

This gem fully supports API V4 of oVirt.
The first version does not give full support.
The supported requests for API V4 are:

    :vm_action, :destroy_vm, :create_vm, :update_vm (without os changes)
    :datacenters
    :storage_domains
    :list_virtual_machines, :get_virtual_machine
    :list_templates, :get_template
    :list_instance_types, :get_instance_type
    :list_clusters, :get_cluster
    :add_interface, :destroy_interface, :update_interface, :list_vm_interfaces, :list_template_interfaces
    :list_networks
    :vm_ticket
    :list_vm_volumes, :list_template_volumes, :list_volumes, :add_volume, :destroy_volume, :update_volume
    :get_api_version
    :list_quotas, :get_quota
    :list_operating_systems
    
### Choosing api version

This example shows the usage as a fog provider:

    client = Fog::Compute.new(
        :provider         => "ovirt",
        :ovirt_username   => user,
        :ovirt_password   => password,
        :ovirt_url        => url,
        :ovirt_datacenter => datacenter,
        :public_key       => public_key,
      )    


Feedback is welcome. Please feel free to open issues for the V4 support and contribute.

## Contributing

Please refer to [CONTRIBUTING.md](CONTRIBUTING.md).

## License

Please refer to [LICENSE.md](LICENSE.md).

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-ovirt-2.0.3 README.md
fog-ovirt-2.0.2 README.md
fog-ovirt-2.0.1 README.md
fog-ovirt-2.0.0 README.md