Skip to content

Commit

Permalink
0.19.1 release.
Browse files Browse the repository at this point in the history
- Note about fog 1.37.0 and DO
- Dependency change to 1.37.0
- Update to `image` instead of `image_name`
- Bump version to 0.19.1
  • Loading branch information
JJ Asghar committed Aug 2, 2016
1 parent 21ad3c6 commit 084e629
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions README.md
Expand Up @@ -57,6 +57,25 @@ driver_options :compute_options => {
}
```

[fog](http://fog.io) 1.38.0 (Newest release) has an issue with DigitalOcean. If
you want to use DigitalOcean and `chef-provisioning-fog` you need to down grade
your fog gem.

```shell
$ gem install fog --version 1.37.0
Successfully installed fog-1.37.0
Parsing documentation for fog-1.37.0
$ gem uninstall fog

Select gem to uninstall:
1. fog-1.37.0
2. fog-1.38.0
3. All versions
> 2
Successfully uninstalled fog-1.38.0
$
```

For a full example see [examples/digitalocean/simple.rb](examples/digitalocean/simple.rb).

### Google Compute Engine
Expand Down
2 changes: 1 addition & 1 deletion chef-provisioning-fog.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/opscode/chef-provisioning-fog'

s.add_dependency 'chef-provisioning', '~> 1.0'
s.add_dependency 'fog', '>= 1.38.0'
s.add_dependency 'fog', '>= 1.37.0'
s.add_dependency 'google-api-client', "~> 0.8.0"
s.add_dependency 'fog-softlayer' , '~> 1.1.0'
s.add_dependency 'retryable'
Expand Down
2 changes: 1 addition & 1 deletion examples/digitalocean/simple.rb
Expand Up @@ -5,7 +5,7 @@

add_machine_options :bootstrap_options => {
:image_distribution => "Ubuntu",
:image_name => "14.04.4 x64",
:image => "18572320", # this installs 16.04.1
:flavor_name => "2GB",
:region_name => "London 1",
:key_name => "my-simple-key-name-already-on-DO"
Expand Down
2 changes: 1 addition & 1 deletion lib/chef/provisioning/fog_driver/version.rb
@@ -1,7 +1,7 @@
class Chef
module Provisioning
module FogDriver
VERSION = '0.19.0'
VERSION = '0.19.1'
end
end
end

0 comments on commit 084e629

Please sign in to comment.