chef-metal-fogsphere 0.1.0.alpha.15 → 0.1.0.alpha.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/chef-metal-fogsphere.gemspec +1 -1
- data/lib/clc_driver.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f76cb430e0dad1963db1a256fee368fa32a506b0
|
4
|
+
data.tar.gz: 516bdf95eac271bbf97a8378e5ef4534ca9017b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef77ea07c765f2a5abe7699ec722aa0f32857e7e82fb804643dd99b69c1c2033ff67826141ff80ca37b7ead6f554b4dd66f886748a69be641c37ce60976fa820
|
7
|
+
data.tar.gz: 0ac1da3a17115fd0c928a65dc6345ccca079c3a6de07a182e893693a7409a3af2c61c6b6505909389f1af35aa85f7a156a0918eb50dbe78d98c9a0be533df3bd
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "chef-metal-fogsphere"
|
7
|
-
gem.version = '0.1.0.alpha.
|
7
|
+
gem.version = '0.1.0.alpha.16'
|
8
8
|
gem.license = 'Apache 2.0'
|
9
9
|
gem.authors = ["Matt Wrock"]
|
10
10
|
gem.email = ["matt@centurylinkcloud.com"]
|
data/lib/clc_driver.rb
CHANGED
@@ -33,7 +33,8 @@ module ChefMetalVsphere
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def self.compute_options_for(id, config)
|
36
|
-
compute_options =
|
36
|
+
compute_options = { :provider => 'vsphere'}
|
37
|
+
compute_options = compute_options.merge(config[:driver_options])
|
37
38
|
new_config = { :driver_options => { :compute_options => compute_options }}
|
38
39
|
|
39
40
|
# Set the identifier from the URL
|