kitchen-openstack 2.1.0.pre → 2.1.0.pre.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 +2 -0
- data/README.md +1 -0
- data/lib/kitchen/driver/openstack.rb +3 -3
- data/lib/kitchen/driver/openstack_version.rb +2 -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: 3c20ba477a5fb9b584a266e5c6f3255821aac01b
|
|
4
|
+
data.tar.gz: b70d545c1b21d12eb45dc16e4a20d753f3a4af6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67bd2673c9355272e8924a17c5cf4a7f50f0c62ee2ec47daf1c86903f0bad265063a9ac3e82105f39f95e141a30695537596ae613af1f04ede5c8f5df61f4fb2
|
|
7
|
+
data.tar.gz: e234a1813a28f5082211b30af14442a53aa3233b96165fdadd5a1a2d7ba3f956e570a23ecdf7c04553750927ca4d2eabae273f9e86ab003562be7f405cdfdc17
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
### New Features
|
|
4
4
|
|
|
5
5
|
* PR [#106][] - The ability to bootstrap on only a private network paired with [@thomascate][] and [@BobbyRyterski][]
|
|
6
|
+
* PR [#115][] - Converting to dots
|
|
6
7
|
|
|
7
8
|
### Bug Fixes
|
|
8
9
|
|
|
@@ -182,6 +183,7 @@ certain specified NICs; via [@monsterzz][]
|
|
|
182
183
|
|
|
183
184
|
* Initial release! Woo!
|
|
184
185
|
|
|
186
|
+
[#115]: https://github.com/test-kitchen/kitchen-openstack/pull/115
|
|
185
187
|
[#111]: https://github.com/test-kitchen/kitchen-openstack/pull/111
|
|
186
188
|
[#106]: https://github.com/test-kitchen/kitchen-openstack/pull/106
|
|
187
189
|
[#104]: https://github.com/test-kitchen/kitchen-openstack/pull/104
|
data/README.md
CHANGED
|
@@ -160,6 +160,7 @@ connections you want declare this.
|
|
|
160
160
|
Some clouds need this some, most OpenStack instances don't. This is a stop gap
|
|
161
161
|
wait makes sure that the machine is in a good state to work with. Ideally the
|
|
162
162
|
transport layer in Test-Kitchen will have a more intelligent way to deal with this.
|
|
163
|
+
There will be a dot that appears every 10 seconds as the timer counts down.
|
|
163
164
|
You may want to add this for **WinRM** instances due to the multiple restarts that
|
|
164
165
|
happen on creation and boot. A good default is `300` seconds to make sure it's
|
|
165
166
|
in a good state.
|
|
@@ -96,6 +96,7 @@ module Kitchen
|
|
|
96
96
|
server = create_server
|
|
97
97
|
state[:server_id] = server.id
|
|
98
98
|
info "OpenStack instance with ID of <#{state[:server_id]}> is ready." # rubocop:disable Metrics/LineLength
|
|
99
|
+
# this is due to the glance_caching issues. Annoying yes, but necessary.
|
|
99
100
|
sleep 30
|
|
100
101
|
if config[:floating_ip]
|
|
101
102
|
attach_ip(server, config[:floating_ip])
|
|
@@ -408,9 +409,8 @@ module Kitchen
|
|
|
408
409
|
def countdown(seconds)
|
|
409
410
|
date1 = Time.now + seconds
|
|
410
411
|
while Time.now < date1
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
sleep 1
|
|
412
|
+
Kernel.print '.'
|
|
413
|
+
sleep 10
|
|
414
414
|
end
|
|
415
415
|
end
|
|
416
416
|
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
# Author:: Jonathan Hartman (<j@p4nt5.com>)
|
|
4
4
|
#
|
|
5
5
|
# Copyright (C) 2013-2015, Jonathan Hartman
|
|
6
|
+
# Copyright (C) 2015, Chef Software Inc
|
|
6
7
|
#
|
|
7
8
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
9
|
# you may not use this file except in compliance with the License.
|
|
@@ -21,6 +22,6 @@ module Kitchen
|
|
|
21
22
|
#
|
|
22
23
|
# @author Jonathan Hartman <j@p4nt5.com>
|
|
23
24
|
module Driver
|
|
24
|
-
OPENSTACK_VERSION = '2.1.0.pre'
|
|
25
|
+
OPENSTACK_VERSION = '2.1.0.pre.1'
|
|
25
26
|
end
|
|
26
27
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-openstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.0.pre
|
|
4
|
+
version: 2.1.0.pre.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Hartman
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-10-
|
|
12
|
+
date: 2015-10-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: test-kitchen
|