kitchen-linode 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/kitchen/driver/linode.rb +4 -0
- data/lib/kitchen/driver/linode_version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a5340ad514d07c615cdaed240b171ab3dcef7ae
|
|
4
|
+
data.tar.gz: 26e5f417f7501cbec8aba4ab2e1f8f6a06ae9309
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb26317cbda40c2c09e3ca168f3de7a8283d2c72287c947d6bd0988d2761d68a9c4a18ef8f70f882d712b783a856db2e0bc3f68abf48c7dce72ae1cac84048ab
|
|
7
|
+
data.tar.gz: 964b9e9e10560b2e38a06ae8df4ab1f24071e82b14b3a6473ff2b4959d2eb844c65e474c19c32678d11b7ea6dd6db1d1281d6efe019d946d3dff5541f78345ef
|
data/CHANGELOG.md
CHANGED
|
@@ -111,6 +111,7 @@ module Kitchen
|
|
|
111
111
|
if data_center.nil?
|
|
112
112
|
fail(UserError, "No match for data_center: #{config[:data_center]}")
|
|
113
113
|
end
|
|
114
|
+
info "Got data center: #{data_center.location}..."
|
|
114
115
|
|
|
115
116
|
# set flavor
|
|
116
117
|
if config[:flavor].is_a? Integer
|
|
@@ -128,6 +129,7 @@ module Kitchen
|
|
|
128
129
|
if flavor.nil?
|
|
129
130
|
fail(UserError, "No match for flavor: #{config[:flavor]}")
|
|
130
131
|
end
|
|
132
|
+
info "Got flavor: #{flavor.name}..."
|
|
131
133
|
|
|
132
134
|
# set image/distribution
|
|
133
135
|
if config[:image].is_a? Integer
|
|
@@ -141,6 +143,7 @@ module Kitchen
|
|
|
141
143
|
if image.nil?
|
|
142
144
|
fail(UserError, "No match for image: #{config[:image]}")
|
|
143
145
|
end
|
|
146
|
+
info "Got image: #{image.name}..."
|
|
144
147
|
|
|
145
148
|
# set kernel
|
|
146
149
|
if config[:kernel].is_a? Integer
|
|
@@ -154,6 +157,7 @@ module Kitchen
|
|
|
154
157
|
if kernel.nil?
|
|
155
158
|
fail(UserError, "No match for kernel: #{config[:kernel]}")
|
|
156
159
|
end
|
|
160
|
+
info "Got kernel: #{kernel.name}..."
|
|
157
161
|
|
|
158
162
|
if config[:private_key_path]
|
|
159
163
|
config[:private_key_path] = File.expand_path(config[:private_key_path])
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-linode
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brett Taylor
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
version: '0'
|
|
147
147
|
requirements: []
|
|
148
148
|
rubyforge_project:
|
|
149
|
-
rubygems_version: 2.0.14
|
|
149
|
+
rubygems_version: 2.0.14.1
|
|
150
150
|
signing_key:
|
|
151
151
|
specification_version: 4
|
|
152
152
|
summary: A Test Kitchen Driver for Linode
|