kitchen-openstack 1.6.0 → 1.6.1
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 +10 -1
- data/lib/kitchen/driver/openstack.rb +2 -2
- data/lib/kitchen/driver/openstack_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fbad99eac55c81d83ff01f71923df56b60984a9
|
|
4
|
+
data.tar.gz: effda2e0a07e3f9f94ec25092869721a65812894
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf46986fa541331a45fe596d29202c28712b086115e4bdf0a4ea126830ee4f413c6a7864ea67c6035944bb74fd0131fd53ae793580b4c6c6a08d12e195f6fada
|
|
7
|
+
data.tar.gz: 7f0163070fce30dee8c62085001b631fa462b39d77079e92b5a506527d1946a8b5492c4809326ce84a78f2772a78b77a694cd93de31570596937c95397d08abe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
# 1.6.
|
|
1
|
+
# 1.6.1 / 2014-10-07
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* PR [#60][] - Resolve method name conflict with Kitchen::Configurable; via
|
|
6
|
+
[@stevejmason][]
|
|
7
|
+
|
|
8
|
+
# 1.6.0 / 2014-09-04
|
|
2
9
|
|
|
3
10
|
### Improvements
|
|
4
11
|
|
|
@@ -119,6 +126,7 @@ certain specified NICs; via [@monsterzz][]
|
|
|
119
126
|
|
|
120
127
|
* Initial release! Woo!
|
|
121
128
|
|
|
129
|
+
[#60]: https://github.com/test-kitchen/kitchen-openstack/pull/60
|
|
122
130
|
[#58]: https://github.com/test-kitchen/kitchen-openstack/pull/58
|
|
123
131
|
[#56]: https://github.com/test-kitchen/kitchen-openstack/pull/56
|
|
124
132
|
[#55]: https://github.com/test-kitchen/kitchen-openstack/pull/55
|
|
@@ -146,6 +154,7 @@ certain specified NICs; via [@monsterzz][]
|
|
|
146
154
|
[#7]: https://github.com/test-kitchen/kitchen-openstack/pull/7
|
|
147
155
|
[#2]: https://github.com/test-kitchen/kitchen-openstack/pull/2
|
|
148
156
|
|
|
157
|
+
[@stevejmason]: https://github.com/stevejmason
|
|
149
158
|
[@StaymanHou]: https://github.com/StaymanHou
|
|
150
159
|
[@jer]: https://github.com/jer
|
|
151
160
|
[@dschlenk]: https://github.com/dschlenk
|
|
@@ -117,7 +117,7 @@ module Kitchen
|
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
def create_server
|
|
120
|
-
server_def =
|
|
120
|
+
server_def = init_configuration
|
|
121
121
|
|
|
122
122
|
if config[:network_ref]
|
|
123
123
|
networks = [].concat([config[:network_ref]])
|
|
@@ -141,7 +141,7 @@ module Kitchen
|
|
|
141
141
|
compute.servers.create(server_def)
|
|
142
142
|
end
|
|
143
143
|
|
|
144
|
-
def
|
|
144
|
+
def init_configuration
|
|
145
145
|
{
|
|
146
146
|
name: config[:server_name],
|
|
147
147
|
image_ref: find_image(config[:image_ref]).id,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-openstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Hartman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|