kitchen-openstack 4.0.0 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 519dd327c12593636d65d7327c453d1c01701bbe2640ae036ea4c33af17d2547
4
- data.tar.gz: 4f5dff6b7474abcfa11fd11c8f74d1009bdde368571c2c78993439b46b161f75
3
+ metadata.gz: 45ebfdb6c5d4785de57b8953b0e361869739ae718a40c7d4e9723113d22c7a59
4
+ data.tar.gz: bab7ff030a9787f2e52ddccec8d1ef4d7c73859958d13e232f8429020d5b3f4d
5
5
  SHA512:
6
- metadata.gz: d462a3e8ef1c383c316662f4ec6172a8c414ac21ef92a1065f0861ef58be8a6a4c98f067e58367e580c7040914fb63d8040ed880f7df860d6b5e8ca4eeaa1bfe
7
- data.tar.gz: 2cd36d17f97ec4b1294a1bab3b008ab477d233787743917a92264cc23cfc731961bd4dd3b345a1d709e8f69f8a302d69afa94db21fb8c50fb25dcef7d7307b21
6
+ metadata.gz: 21d13af2b2062a8a5b547ffd4fdf61f076f7f6178c0038f70359e42737295553b456df211a68e7c6b631df82de94399d414329ab651127b391c28f914b071efc
7
+ data.tar.gz: 93dcedbec3563c85e9f8fd274378091570cd4338ee053b1da7fa366bc66feca1f42d507488c86403d937f741d1cfb354c67345b7571a2801046e8150529032df
data/README.md CHANGED
@@ -285,6 +285,9 @@ Otherwise set this to `false`.
285
285
  #### creation\_timeout
286
286
  Timeout to wait for volume to become available. If a large volume is provisioned, it might take time to provision it on the backend. Maximum amount of time to wait for volume to be created and be available.
287
287
 
288
+ #### attach\_timeout
289
+ If using a customized version of Openstack such a VMWare Integrated OPenstack (VIO), it may mark a volume active even though it is still performing some actions which may cause test kitchen to attach the volume to early which results in errors. Specify in seconds the amount of time to delay attaching the volume after its been marked active. Default timeout is 0.
290
+
288
291
  #### Example
289
292
 
290
293
  ```yaml
@@ -295,6 +298,7 @@ block_device_mapping:
295
298
  availability_zone: nova
296
299
  delete_on_termination: false
297
300
  creation_timeout: 120
301
+ attach_timeout: 240
298
302
  ```
299
303
 
300
304
  ## Network and Communication Configuration
@@ -6,7 +6,7 @@
6
6
  # Author:: JJ Asghar (<jj@chef.io>)
7
7
  #
8
8
  # Copyright (C) 2013-2015, Jonathan Hartman
9
- # Copyright (C) 2015-2017, Chef Inc
9
+ # Copyright (C) 2015-2020, Chef Software Inc.
10
10
  #
11
11
  # Licensed under the Apache License, Version 2.0 (the "License");
12
12
  # you may not use this file except in compliance with the License.
@@ -147,7 +147,7 @@ module Kitchen
147
147
  end
148
148
 
149
149
  def optional_server_settings
150
- Fog::Compute::OpenStack.recognized.select do |k|
150
+ Fog::OpenStack::Compute.recognized.select do |k|
151
151
  k.to_s.start_with?("openstack")
152
152
  end - required_server_settings
153
153
  end
@@ -161,7 +161,7 @@ module Kitchen
161
161
  end
162
162
 
163
163
  def compute
164
- Fog::Compute.new(openstack_server)
164
+ Fog::OpenStack::Compute.new(openstack_server)
165
165
  end
166
166
 
167
167
  def volume
@@ -174,7 +174,7 @@ module Kitchen
174
174
 
175
175
  def create_server
176
176
  server_def = init_configuration
177
- fail(ActionFailed, "Cannot specify both network_ref and network_id") if config[:network_id] && config[:network_ref] # rubocop:disable SignalException
177
+ fail(ActionFailed, "Cannot specify both network_ref and network_id") if config[:network_id] && config[:network_ref] # rubocop:disable Style/SignalException
178
178
 
179
179
  if config[:network_id]
180
180
  networks = [].concat([config[:network_id]])
@@ -209,8 +209,8 @@ module Kitchen
209
209
  end
210
210
 
211
211
  def init_configuration
212
- fail(ActionFailed, "Cannot specify both image_ref and image_id") if config[:image_id] && config[:image_ref] # rubocop:disable SignalException
213
- fail(ActionFailed, "Cannot specify both flavor_ref and flavor_id") if config[:flavor_id] && config[:flavor_ref] # rubocop:disable SignalException
212
+ fail(ActionFailed, "Cannot specify both image_ref and image_id") if config[:image_id] && config[:image_ref] # rubocop:disable Style/SignalException
213
+ fail(ActionFailed, "Cannot specify both flavor_ref and flavor_id") if config[:flavor_id] && config[:flavor_ref] # rubocop:disable Style/SignalException
214
214
 
215
215
  {
216
216
  name: config[:server_name],
@@ -233,7 +233,7 @@ module Kitchen
233
233
 
234
234
  def find_image(image_ref)
235
235
  image = find_matching(compute.images, image_ref)
236
- fail(ActionFailed, "Image not found") unless image # rubocop:disable SignalException
236
+ fail(ActionFailed, "Image not found") unless image # rubocop:disable Style/SignalException
237
237
 
238
238
  debug "Selected image: #{image.id} #{image.name}"
239
239
  image
@@ -241,7 +241,7 @@ module Kitchen
241
241
 
242
242
  def find_flavor(flavor_ref)
243
243
  flavor = find_matching(compute.flavors, flavor_ref)
244
- fail(ActionFailed, "Flavor not found") unless flavor # rubocop:disable SignalException
244
+ fail(ActionFailed, "Flavor not found") unless flavor # rubocop:disable Style/SignalException
245
245
 
246
246
  debug "Selected flavor: #{flavor.id} #{flavor.name}"
247
247
  flavor
@@ -249,7 +249,7 @@ module Kitchen
249
249
 
250
250
  def find_network(network_ref)
251
251
  net = find_matching(network.networks.all, network_ref)
252
- fail(ActionFailed, "Network not found") unless net # rubocop:disable SignalException
252
+ fail(ActionFailed, "Network not found") unless net # rubocop:disable Style/SignalException
253
253
 
254
254
  debug "Selected net: #{net.id} #{net.name}"
255
255
  net
@@ -315,7 +315,7 @@ module Kitchen
315
315
  i.ip if i.fixed_ip.nil? && i.instance_id.nil? && i.pool == pool
316
316
  end.compact
317
317
  if free_addrs.empty?
318
- fail ActionFailed, "No available IPs in pool <#{pool}>" # rubocop:disable SignalException
318
+ fail ActionFailed, "No available IPs in pool <#{pool}>" # rubocop:disable Style/SignalException
319
319
  end
320
320
 
321
321
  config[:floating_ip] = free_addrs[0]
@@ -333,7 +333,7 @@ module Kitchen
333
333
  begin
334
334
  pub = server.public_ip_addresses
335
335
  priv = server.private_ip_addresses
336
- rescue Fog::Compute::OpenStack::NotFound, Excon::Errors::Forbidden
336
+ rescue Fog::OpenStack::Compute::NotFound, Excon::Errors::Forbidden
337
337
  # See Fog issue: https://github.com/fog/fog/issues/2160
338
338
  addrs = server.addresses
339
339
  addrs["public"] && pub = addrs["public"].map { |i| i["addr"] }
@@ -368,7 +368,7 @@ module Kitchen
368
368
  pub, priv = parse_ips(pub, priv)
369
369
  pub[config[:public_ip_order].to_i] ||
370
370
  priv[config[:private_ip_order].to_i] ||
371
- fail(ActionFailed, "Could not find an IP") # rubocop:disable SignalException
371
+ fail(ActionFailed, "Could not find an IP") # rubocop:disable Style/SignalException
372
372
  end
373
373
 
374
374
  def filter_ips(addresses)
@@ -74,6 +74,13 @@ module Kitchen
74
74
  ready?
75
75
  end
76
76
 
77
+ attach_timeout = bdm.key?(:attach_timeout) ? bdm[:attach_timeout] : 0
78
+
79
+ if attach_timeout > 0
80
+ @logger.debug "Sleeping for an additional #{attach_timeout} seconds before attaching volume to wait for Openstack to finish disk creation process.."
81
+ sleep(attach_timeout)
82
+ end
83
+
77
84
  @logger.debug "Volume Ready"
78
85
 
79
86
  vol_id
@@ -5,7 +5,7 @@
5
5
  # Author:: Jonathan Hartman (<j@p4nt5.com>)
6
6
  #
7
7
  # Copyright (C) 2013-2015, Jonathan Hartman
8
- # Copyright (C) 2015-2018, Chef Software Inc
8
+ # Copyright (C) 2015-2020, Chef Software Inc
9
9
  #
10
10
  # Licensed under the Apache License, Version 2.0 (the "License");
11
11
  # you may not use this file except in compliance with the License.
@@ -24,6 +24,6 @@ module Kitchen
24
24
  #
25
25
  # @author Jonathan Hartman <j@p4nt5.com>
26
26
  module Driver
27
- OPENSTACK_VERSION = "4.0.0"
27
+ OPENSTACK_VERSION = "5.0.0"
28
28
  end
29
29
  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: 4.0.0
4
+ version: 5.0.0
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: 2019-08-09 00:00:00.000000000 Z
12
+ date: 2020-02-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: test-kitchen
@@ -37,14 +37,14 @@ dependencies:
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.1'
40
+ version: '1.0'
41
41
  type: :runtime
42
42
  prerelease: false
43
43
  version_requirements: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0.1'
47
+ version: '1.0'
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: unf
50
50
  requirement: !ruby/object:Gem::Requirement
@@ -221,21 +221,10 @@ executables: []
221
221
  extensions: []
222
222
  extra_rdoc_files: []
223
223
  files:
224
- - ".gitignore"
225
- - ".rubocop.yml"
226
- - ".travis.yml"
227
- - CHANGELOG.md
228
- - Gemfile
229
- - LICENSE.txt
230
224
  - README.md
231
- - Rakefile
232
- - kitchen-openstack.gemspec
233
225
  - lib/kitchen/driver/openstack.rb
234
226
  - lib/kitchen/driver/openstack/volume.rb
235
227
  - lib/kitchen/driver/openstack_version.rb
236
- - spec/kitchen/driver/openstack/volume_spec.rb
237
- - spec/kitchen/driver/openstack_spec.rb
238
- - spec/spec_helper.rb
239
228
  homepage: https://github.com/test-kitchen/kitchen-openstack
240
229
  licenses:
241
230
  - Apache-2.0
@@ -255,8 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
244
  - !ruby/object:Gem::Version
256
245
  version: '0'
257
246
  requirements: []
258
- rubyforge_project:
259
- rubygems_version: 2.7.6
247
+ rubygems_version: 3.1.2
260
248
  signing_key:
261
249
  specification_version: 4
262
250
  summary: A Test Kitchen OpenStack Nova driver
data/.gitignore DELETED
@@ -1,23 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .yardoc
6
- Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- .kitchen
19
- *.sw?
20
- *~
21
- .direnv/
22
- .envrc
23
- .ruby-version
@@ -1,16 +0,0 @@
1
- CyclomaticComplexity:
2
- Max: 8
3
- MethodLength:
4
- Max: 30
5
- ClassLength:
6
- Max: 320
7
- ClassVars:
8
- Enabled: false
9
- BlockLength:
10
- Enabled: false
11
- ConditionalAssignment:
12
- Enabled: false
13
- PerceivedComplexity:
14
- Max: 10
15
- AbcSize:
16
- Max: 41
@@ -1,19 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- before_install: gem install bundler
4
- branches:
5
- only:
6
- - master
7
- rvm:
8
- - 2.3.7
9
- - 2.4.4
10
- - 2.5.1
11
- - ruby-head
12
-
13
- script:
14
- - bundle exec rake rubocop
15
- - bundle exec rake spec
16
-
17
- matrix:
18
- allow_failures:
19
- - rvm: 2.3.7
@@ -1,556 +0,0 @@
1
- # Change Log
2
-
3
- ## [v3.6.2](https://github.com/test-kitchen/kitchen-openstack/tree/v3.6.2)
4
-
5
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.6.1...v3.6.2)
6
-
7
- **Merged pull requests:**
8
-
9
- - Fall back on Etc.getlogin for windows environments [\#186](https://github.com/test-kitchen/kitchen-openstack/pull/186) ([joshuariojas](https://github.com/joshuariojas))
10
- - Update Travis to the latest ruby releases [\#185](https://github.com/test-kitchen/kitchen-openstack/pull/185) ([tas50](https://github.com/tas50))
11
- - Getting travis green. [\#184](https://github.com/test-kitchen/kitchen-openstack/pull/184) ([jjasghar](https://github.com/jjasghar))
12
-
13
- ## [v3.6.1](https://github.com/test-kitchen/kitchen-openstack/tree/v3.6.1) (2018-06-06)
14
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.6.0...v3.6.1)
15
-
16
- **Merged pull requests:**
17
-
18
- - Use Etc.getpwuid instead of getlogin [\#183](https://github.com/test-kitchen/kitchen-openstack/pull/183) ([tnguyen14](https://github.com/tnguyen14))
19
-
20
- ## [v3.6.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.6.0) (2018-03-28)
21
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.5.1...v3.6.0)
22
-
23
- **Closed issues:**
24
-
25
- - Is there a way to re-use volume? [\#181](https://github.com/test-kitchen/kitchen-openstack/issues/181)
26
- - private method `select' called for nil:NilClass [\#177](https://github.com/test-kitchen/kitchen-openstack/issues/177)
27
- - The request you have made requires authentication [\#167](https://github.com/test-kitchen/kitchen-openstack/issues/167)
28
-
29
- **Merged pull requests:**
30
-
31
- - Support for v3 [\#179](https://github.com/test-kitchen/kitchen-openstack/pull/179) ([andybrucenet](https://github.com/andybrucenet))
32
-
33
- ## [v3.5.1](https://github.com/test-kitchen/kitchen-openstack/tree/v3.5.1) (2017-11-10)
34
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.5.0...v3.5.1)
35
-
36
- **Closed issues:**
37
-
38
- - block\_device\_mapping crashes on nodename nor servname provided [\#176](https://github.com/test-kitchen/kitchen-openstack/issues/176)
39
- - Same floating IP to different server [\#175](https://github.com/test-kitchen/kitchen-openstack/issues/175)
40
- - Cannot create windows machines [\#172](https://github.com/test-kitchen/kitchen-openstack/issues/172)
41
-
42
- **Merged pull requests:**
43
-
44
- - Switch from fog to fog-openstack to slim deps and speed runtime [\#174](https://github.com/test-kitchen/kitchen-openstack/pull/174) ([tas50](https://github.com/tas50))
45
-
46
- ## [v3.5.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.5.0) (2017-04-12)
47
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.4.0...v3.5.0)
48
-
49
- **Merged pull requests:**
50
-
51
- - Add metadata support [\#166](https://github.com/test-kitchen/kitchen-openstack/pull/166) ([akitada](https://github.com/akitada))
52
- - Use new ohai config context [\#165](https://github.com/test-kitchen/kitchen-openstack/pull/165) ([akitada](https://github.com/akitada))
53
-
54
- ## [v3.4.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.4.0) (2017-03-27)
55
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.3.0...v3.4.0)
56
-
57
- **Closed issues:**
58
-
59
- - Multiple networks in network\_id causes error [\#163](https://github.com/test-kitchen/kitchen-openstack/issues/163)
60
- - Can't create VM [\#160](https://github.com/test-kitchen/kitchen-openstack/issues/160)
61
- - Why is private\_key\_path required? [\#151](https://github.com/test-kitchen/kitchen-openstack/issues/151)
62
- - version 3.1.0 does not properly wait for VM to be up before failing [\#147](https://github.com/test-kitchen/kitchen-openstack/issues/147)
63
-
64
- **Merged pull requests:**
65
-
66
- - Fix creation of floating IP to use network ID instead of name [\#162](https://github.com/test-kitchen/kitchen-openstack/pull/162) ([dannytrigo](https://github.com/dannytrigo))
67
- - Updated readme with clarity [\#161](https://github.com/test-kitchen/kitchen-openstack/pull/161) ([jjasghar](https://github.com/jjasghar))
68
-
69
- ## [v3.3.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.3.0) (2017-03-13)
70
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.2.0...v3.3.0)
71
-
72
- **Merged pull requests:**
73
-
74
- - Uuids [\#159](https://github.com/test-kitchen/kitchen-openstack/pull/159) ([boc-tothefuture](https://github.com/boc-tothefuture))
75
-
76
- ## [v3.2.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.2.0) (2017-03-02)
77
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.1.0...v3.2.0)
78
-
79
- **Closed issues:**
80
-
81
- - Expose excon timeouts to kitchen [\#157](https://github.com/test-kitchen/kitchen-openstack/issues/157)
82
- - Enhancement: generate openstack keypair on create [\#150](https://github.com/test-kitchen/kitchen-openstack/issues/150)
83
- - kitchen-openstack should use SSH Agent [\#149](https://github.com/test-kitchen/kitchen-openstack/issues/149)
84
- - Permission Denied on kitchen runs after first [\#146](https://github.com/test-kitchen/kitchen-openstack/issues/146)
85
- - Config-drive [\#143](https://github.com/test-kitchen/kitchen-openstack/issues/143)
86
- - Support Identity v3 [\#137](https://github.com/test-kitchen/kitchen-openstack/issues/137)
87
-
88
- **Merged pull requests:**
89
-
90
- - Prep for v3.2.0 [\#158](https://github.com/test-kitchen/kitchen-openstack/pull/158) ([jjasghar](https://github.com/jjasghar))
91
- - Expose excon timeout configuration [\#156](https://github.com/test-kitchen/kitchen-openstack/pull/156) ([MariusCC](https://github.com/MariusCC))
92
- - Dynamically allocate Floating IP for the test server. [\#155](https://github.com/test-kitchen/kitchen-openstack/pull/155) ([dannytrigo](https://github.com/dannytrigo))
93
- - Defer ssh key handling to transport. [\#154](https://github.com/test-kitchen/kitchen-openstack/pull/154) ([cliles](https://github.com/cliles))
94
- - fix failing to get IP when there is no public IP. [\#152](https://github.com/test-kitchen/kitchen-openstack/pull/152) ([onceking](https://github.com/onceking))
95
-
96
- ## [v3.1.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.1.0) (2016-06-02)
97
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.0.0...v3.1.0)
98
-
99
- **Closed issues:**
100
-
101
- - `use\_ipv6` setting not respected when using `openstack\_network\_name` [\#141](https://github.com/test-kitchen/kitchen-openstack/issues/141)
102
-
103
- **Merged pull requests:**
104
-
105
- - v3.1.0 [\#145](https://github.com/test-kitchen/kitchen-openstack/pull/145) ([jjasghar](https://github.com/jjasghar))
106
- - Add config drive [\#144](https://github.com/test-kitchen/kitchen-openstack/pull/144) ([bradkwadsworth](https://github.com/bradkwadsworth))
107
- - Update to check IP version when using `openstack\_network\_name`. [\#142](https://github.com/test-kitchen/kitchen-openstack/pull/142) ([nmische](https://github.com/nmische))
108
- - minor grammar tweak to sleep message [\#140](https://github.com/test-kitchen/kitchen-openstack/pull/140) ([dpetzel](https://github.com/dpetzel))
109
-
110
- ## [v3.0.0](https://github.com/test-kitchen/kitchen-openstack/tree/v3.0.0) (2016-02-24)
111
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v3.0.0.pre.1...v3.0.0)
112
-
113
- **Merged pull requests:**
114
-
115
- - 3.0.0 prep work [\#139](https://github.com/test-kitchen/kitchen-openstack/pull/139) ([jjasghar](https://github.com/jjasghar))
116
- - 3.0.0 Release of kitchen-openstack [\#136](https://github.com/test-kitchen/kitchen-openstack/pull/136) ([jjasghar](https://github.com/jjasghar))
117
-
118
- ## [v3.0.0.pre.1](https://github.com/test-kitchen/kitchen-openstack/tree/v3.0.0.pre.1) (2016-02-12)
119
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.2.0...v3.0.0.pre.1)
120
-
121
- **Closed issues:**
122
-
123
- - transport\#username is not working for me [\#135](https://github.com/test-kitchen/kitchen-openstack/issues/135)
124
- - kitchen-openstack unable to retrieve network information [\#134](https://github.com/test-kitchen/kitchen-openstack/issues/134)
125
- - Password value in transport is not used in driver [\#133](https://github.com/test-kitchen/kitchen-openstack/issues/133)
126
- - SSL\_connect SYSCALL returned=5 errno=0 state=SSLv2/v3 read server hello A \(OpenSSL::SSL::SSLError\) [\#132](https://github.com/test-kitchen/kitchen-openstack/issues/132)
127
- - Volume: create new, attach existing, make from snapshot \(seems not working\) [\#131](https://github.com/test-kitchen/kitchen-openstack/issues/131)
128
- - Boot from Image \(into new volume\) [\#130](https://github.com/test-kitchen/kitchen-openstack/issues/130)
129
- - Put the yml files for each instance in .kitchen/kitchen-openstack [\#116](https://github.com/test-kitchen/kitchen-openstack/issues/116)
130
-
131
- ## [v2.2.0](https://github.com/test-kitchen/kitchen-openstack/tree/v2.2.0) (2015-12-16)
132
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.2.0.pre.1...v2.2.0)
133
-
134
- **Implemented enhancements:**
135
-
136
- - Glance Caching sleep time should probably be a configurable option [\#117](https://github.com/test-kitchen/kitchen-openstack/issues/117)
137
-
138
- **Closed issues:**
139
-
140
- - cannot change default key [\#129](https://github.com/test-kitchen/kitchen-openstack/issues/129)
141
-
142
- **Merged pull requests:**
143
-
144
- - 2.2.0 [\#128](https://github.com/test-kitchen/kitchen-openstack/pull/128) ([jjasghar](https://github.com/jjasghar))
145
-
146
- ## [v2.2.0.pre.1](https://github.com/test-kitchen/kitchen-openstack/tree/v2.2.0.pre.1) (2015-11-23)
147
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.1.1...v2.2.0.pre.1)
148
-
149
- **Merged pull requests:**
150
-
151
- - Updated README with key\_name issue. [\#127](https://github.com/test-kitchen/kitchen-openstack/pull/127) ([jjasghar](https://github.com/jjasghar))
152
- - Use OpenStack models for waiting for conditions [\#120](https://github.com/test-kitchen/kitchen-openstack/pull/120) ([carpnick](https://github.com/carpnick))
153
-
154
- ## [v2.1.1](https://github.com/test-kitchen/kitchen-openstack/tree/v2.1.1) (2015-11-03)
155
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.1.0...v2.1.1)
156
-
157
- **Closed issues:**
158
-
159
- - kitchen create on Windows 2012/WinRM fails: "Expressions are only allowed as the first element of a pipeline." [\#122](https://github.com/test-kitchen/kitchen-openstack/issues/122)
160
-
161
- **Merged pull requests:**
162
-
163
- - 2.1.1 [\#125](https://github.com/test-kitchen/kitchen-openstack/pull/125) ([jjasghar](https://github.com/jjasghar))
164
- - Ohai hint file is now created with the correct encoding on Windows [\#124](https://github.com/test-kitchen/kitchen-openstack/pull/124) ([stuartpreston](https://github.com/stuartpreston))
165
- - Added info about user\_data [\#121](https://github.com/test-kitchen/kitchen-openstack/pull/121) ([jjasghar](https://github.com/jjasghar))
166
-
167
- ## [v2.1.0](https://github.com/test-kitchen/kitchen-openstack/tree/v2.1.0) (2015-10-19)
168
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.1.0.pre.1...v2.1.0)
169
-
170
- ## [v2.1.0.pre.1](https://github.com/test-kitchen/kitchen-openstack/tree/v2.1.0.pre.1) (2015-10-13)
171
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.1.0.pre...v2.1.0.pre.1)
172
-
173
- **Implemented enhancements:**
174
-
175
- - Clean Up README [\#109](https://github.com/test-kitchen/kitchen-openstack/issues/109)
176
-
177
- **Fixed bugs:**
178
-
179
- - Clean Up README [\#109](https://github.com/test-kitchen/kitchen-openstack/issues/109)
180
-
181
- **Closed issues:**
182
-
183
- - Countdown timer is a little too verbose [\#113](https://github.com/test-kitchen/kitchen-openstack/issues/113)
184
- - image\_ref: underscores translated to dashes [\#84](https://github.com/test-kitchen/kitchen-openstack/issues/84)
185
-
186
- **Merged pull requests:**
187
-
188
- - Converting to dots [\#115](https://github.com/test-kitchen/kitchen-openstack/pull/115) ([jjasghar](https://github.com/jjasghar))
189
-
190
- ## [v2.1.0.pre](https://github.com/test-kitchen/kitchen-openstack/tree/v2.1.0.pre) (2015-10-07)
191
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0...v2.1.0.pre)
192
-
193
- **Closed issues:**
194
-
195
- - undefined method `public\_ip\_addresses' for {}:Hash [\#105](https://github.com/test-kitchen/kitchen-openstack/issues/105)
196
-
197
- **Merged pull requests:**
198
-
199
- - updated license links and data. [\#112](https://github.com/test-kitchen/kitchen-openstack/pull/112) ([jjasghar](https://github.com/jjasghar))
200
- - New README [\#111](https://github.com/test-kitchen/kitchen-openstack/pull/111) ([jjasghar](https://github.com/jjasghar))
201
- - Fail action when network info isn't available [\#110](https://github.com/test-kitchen/kitchen-openstack/pull/110) ([BobbyRyterski](https://github.com/BobbyRyterski))
202
- - Wait for network info in get\_ip [\#108](https://github.com/test-kitchen/kitchen-openstack/pull/108) ([BobbyRyterski](https://github.com/BobbyRyterski))
203
- - Refactor get\_ip [\#107](https://github.com/test-kitchen/kitchen-openstack/pull/107) ([BobbyRyterski](https://github.com/BobbyRyterski))
204
- - 2.1.0 [\#106](https://github.com/test-kitchen/kitchen-openstack/pull/106) ([jjasghar](https://github.com/jjasghar))
205
-
206
- ## [v2.0.0](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0) (2015-09-30)
207
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0.dev.4...v2.0.0)
208
-
209
- ## [v2.0.0.dev.4](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0.dev.4) (2015-09-23)
210
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0.dev.3...v2.0.0.dev.4)
211
-
212
- **Closed issues:**
213
-
214
- - SSH Hangs with Key Auth [\#101](https://github.com/test-kitchen/kitchen-openstack/issues/101)
215
-
216
- **Merged pull requests:**
217
-
218
- - fixup install ohai hints so the file is written with root privledges [\#104](https://github.com/test-kitchen/kitchen-openstack/pull/104) ([spion06](https://github.com/spion06))
219
- - Readd key\_name to README [\#103](https://github.com/test-kitchen/kitchen-openstack/pull/103) ([BobbyRyterski](https://github.com/BobbyRyterski))
220
- - Add transport ssh\_key note to README [\#102](https://github.com/test-kitchen/kitchen-openstack/pull/102) ([BobbyRyterski](https://github.com/BobbyRyterski))
221
-
222
- ## [v2.0.0.dev.3](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0.dev.3) (2015-09-21)
223
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0.dev.2...v2.0.0.dev.3)
224
-
225
- **Implemented enhancements:**
226
-
227
- - Support all Fog OpenStack options [\#98](https://github.com/test-kitchen/kitchen-openstack/pull/98) ([BobbyRyterski](https://github.com/BobbyRyterski))
228
-
229
- **Closed issues:**
230
-
231
- - OpenStack Hint File should work with Ohai cookbook [\#96](https://github.com/test-kitchen/kitchen-openstack/issues/96)
232
- - create command will makes duplicated images. [\#67](https://github.com/test-kitchen/kitchen-openstack/issues/67)
233
-
234
- **Merged pull requests:**
235
-
236
- - Don't create instance if name is already created [\#100](https://github.com/test-kitchen/kitchen-openstack/pull/100) ([dpetzel](https://github.com/dpetzel))
237
- - Fix for issue 96 [\#97](https://github.com/test-kitchen/kitchen-openstack/pull/97) ([jjasghar](https://github.com/jjasghar))
238
-
239
- ## [v2.0.0.dev.2](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0.dev.2) (2015-09-16)
240
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0.dev.1...v2.0.0.dev.2)
241
-
242
- **Merged pull requests:**
243
-
244
- - Load openstack\_version for plugin\_version [\#99](https://github.com/test-kitchen/kitchen-openstack/pull/99) ([BobbyRyterski](https://github.com/BobbyRyterski))
245
-
246
- ## [v2.0.0.dev.1](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0.dev.1) (2015-09-10)
247
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v2.0.0.dev...v2.0.0.dev.1)
248
-
249
- **Closed issues:**
250
-
251
- - 1.9.0.dev [\#93](https://github.com/test-kitchen/kitchen-openstack/issues/93)
252
-
253
- **Merged pull requests:**
254
-
255
- - 2.0.0.dev.1 [\#95](https://github.com/test-kitchen/kitchen-openstack/pull/95) ([jjasghar](https://github.com/jjasghar))
256
-
257
- ## [v2.0.0.dev](https://github.com/test-kitchen/kitchen-openstack/tree/v2.0.0.dev) (2015-09-09)
258
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.9.0.dev...v2.0.0.dev)
259
-
260
- **Implemented enhancements:**
261
-
262
- - Test Kitchen Openstack doesn't support block storage\(volumes\) [\#75](https://github.com/test-kitchen/kitchen-openstack/issues/75)
263
- - Enhancement: Windows Support [\#45](https://github.com/test-kitchen/kitchen-openstack/issues/45)
264
-
265
- **Closed issues:**
266
-
267
- - Waiting for SSH service [\#91](https://github.com/test-kitchen/kitchen-openstack/issues/91)
268
- - Connections to Rackspace require the password instead of the API key [\#90](https://github.com/test-kitchen/kitchen-openstack/issues/90)
269
-
270
- **Merged pull requests:**
271
-
272
- - added rubygem tasks [\#94](https://github.com/test-kitchen/kitchen-openstack/pull/94) ([jjasghar](https://github.com/jjasghar))
273
- - Kitchen::Base and Windows support [\#92](https://github.com/test-kitchen/kitchen-openstack/pull/92) ([jjasghar](https://github.com/jjasghar))
274
-
275
- ## [v1.9.0.dev](https://github.com/test-kitchen/kitchen-openstack/tree/v1.9.0.dev) (2015-09-03)
276
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.8.1...v1.9.0.dev)
277
-
278
- **Merged pull requests:**
279
-
280
- - Ability to control the order of IP to connect to [\#89](https://github.com/test-kitchen/kitchen-openstack/pull/89) ([ytsarev](https://github.com/ytsarev))
281
-
282
- ## [v1.8.1](https://github.com/test-kitchen/kitchen-openstack/tree/v1.8.1) (2015-07-22)
283
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.3.1...v1.8.1)
284
-
285
- **Implemented enhancements:**
286
-
287
- - Yo, dawg, I heard you like Test Kitchen... [\#30](https://github.com/test-kitchen/kitchen-openstack/issues/30)
288
-
289
- **Closed issues:**
290
-
291
- - Config checks in openstack.rb [\#82](https://github.com/test-kitchen/kitchen-openstack/issues/82)
292
- - Readme Usage : Openstack tenant in config [\#81](https://github.com/test-kitchen/kitchen-openstack/issues/81)
293
- - Kitchen converge hangs [\#71](https://github.com/test-kitchen/kitchen-openstack/issues/71)
294
-
295
- **Merged pull requests:**
296
-
297
- - Fail if required key information can't be found [\#88](https://github.com/test-kitchen/kitchen-openstack/pull/88) ([RoboticCheese](https://github.com/RoboticCheese))
298
- - Fix for the readme.md [\#87](https://github.com/test-kitchen/kitchen-openstack/pull/87) ([jjasghar](https://github.com/jjasghar))
299
- - Issue 82 [\#86](https://github.com/test-kitchen/kitchen-openstack/pull/86) ([jjasghar](https://github.com/jjasghar))
300
- - Added a check for ssh key authetication [\#85](https://github.com/test-kitchen/kitchen-openstack/pull/85) ([jjasghar](https://github.com/jjasghar))
301
-
302
- ## [v1.3.1](https://github.com/test-kitchen/kitchen-openstack/tree/v1.3.1) (2015-07-18)
303
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.2.0...v1.3.1)
304
-
305
- **Merged pull requests:**
306
-
307
- - Update README.md for chefdk installation [\#83](https://github.com/test-kitchen/kitchen-openstack/pull/83) ([kcd83](https://github.com/kcd83))
308
-
309
- ## [v1.2.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.2.0) (2015-06-18)
310
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.2.0.rc2...v1.2.0)
311
-
312
- ## [v1.2.0.rc2](https://github.com/test-kitchen/kitchen-openstack/tree/v1.2.0.rc2) (2015-06-10)
313
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.2.0.rc1...v1.2.0.rc2)
314
-
315
- ## [v1.2.0.rc1](https://github.com/test-kitchen/kitchen-openstack/tree/v1.2.0.rc1) (2015-06-04)
316
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.8.0...v1.2.0.rc1)
317
-
318
- ## [v1.8.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.8.0) (2015-04-09)
319
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.7.1...v1.8.0)
320
-
321
- **Closed issues:**
322
-
323
- - Create failed on instance \<default-cirros\> 400 [\#73](https://github.com/test-kitchen/kitchen-openstack/issues/73)
324
- - not able to find the driver [\#72](https://github.com/test-kitchen/kitchen-openstack/issues/72)
325
-
326
- **Merged pull requests:**
327
-
328
- - Update tests for newer TK [\#76](https://github.com/test-kitchen/kitchen-openstack/pull/76) ([RoboticCheese](https://github.com/RoboticCheese))
329
- - Respect a configured password when setting up SSH [\#70](https://github.com/test-kitchen/kitchen-openstack/pull/70) ([RoboticCheese](https://github.com/RoboticCheese))
330
-
331
- ## [v1.7.1](https://github.com/test-kitchen/kitchen-openstack/tree/v1.7.1) (2015-01-08)
332
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.7.0...v1.7.1)
333
-
334
- ## [v1.7.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.7.0) (2014-10-26)
335
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.6.1...v1.7.0)
336
-
337
- **Closed issues:**
338
-
339
- - kitchen attempting to log in too quickly? [\#64](https://github.com/test-kitchen/kitchen-openstack/issues/64)
340
- - problem to specify Availability Zone when create instance [\#61](https://github.com/test-kitchen/kitchen-openstack/issues/61)
341
-
342
- **Merged pull requests:**
343
-
344
- - Support a timed sleep for SSH edge cases [\#66](https://github.com/test-kitchen/kitchen-openstack/pull/66) ([RoboticCheese](https://github.com/RoboticCheese))
345
- - Availability zone support+ [\#65](https://github.com/test-kitchen/kitchen-openstack/pull/65) ([RoboticCheese](https://github.com/RoboticCheese))
346
- - Add server\_name\_prefix semi-random naming with some known prefix [\#63](https://github.com/test-kitchen/kitchen-openstack/pull/63) ([ftclausen](https://github.com/ftclausen))
347
-
348
- ## [v1.6.1](https://github.com/test-kitchen/kitchen-openstack/tree/v1.6.1) (2014-10-07)
349
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/1.0.0...v1.6.1)
350
-
351
- **Merged pull requests:**
352
-
353
- - Renamed 'init\_config' method to resolve conflicting method name with lat... [\#60](https://github.com/test-kitchen/kitchen-openstack/pull/60) ([stevejmason](https://github.com/stevejmason))
354
-
355
- ## [1.0.0](https://github.com/test-kitchen/kitchen-openstack/tree/1.0.0) (2014-10-07)
356
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/1.0.0.rc2...1.0.0)
357
-
358
- ## [1.0.0.rc2](https://github.com/test-kitchen/kitchen-openstack/tree/1.0.0.rc2) (2014-09-29)
359
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/1.0.0.rc1...1.0.0.rc2)
360
-
361
- ## [1.0.0.rc1](https://github.com/test-kitchen/kitchen-openstack/tree/1.0.0.rc1) (2014-09-24)
362
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.6.0...1.0.0.rc1)
363
-
364
- ## [v1.6.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.6.0) (2014-09-04)
365
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.5.3...v1.6.0)
366
-
367
- **Closed issues:**
368
-
369
- - 1.5.3 name generation broken. [\#54](https://github.com/test-kitchen/kitchen-openstack/issues/54)
370
- - Remove occurrences of "require\_chef\_omnibus: latest" in docs [\#34](https://github.com/test-kitchen/kitchen-openstack/issues/34)
371
-
372
- **Merged pull requests:**
373
-
374
- - \#55 + shut Rubocop up for now [\#59](https://github.com/test-kitchen/kitchen-openstack/pull/59) ([RoboticCheese](https://github.com/RoboticCheese))
375
- - Fix \#54; prevent errors on non-login shells [\#58](https://github.com/test-kitchen/kitchen-openstack/pull/58) ([RoboticCheese](https://github.com/RoboticCheese))
376
- - \#56 + drop Ruby 1.9.2 [\#57](https://github.com/test-kitchen/kitchen-openstack/pull/57) ([RoboticCheese](https://github.com/RoboticCheese))
377
- - Select the first valid IP if all other checks fail [\#56](https://github.com/test-kitchen/kitchen-openstack/pull/56) ([jer](https://github.com/jer))
378
- - Reverse the priority of floating\_ip & floating\_ip\_pool [\#55](https://github.com/test-kitchen/kitchen-openstack/pull/55) ([StaymanHou](https://github.com/StaymanHou))
379
-
380
- ## [v1.5.3](https://github.com/test-kitchen/kitchen-openstack/tree/v1.5.3) (2014-08-01)
381
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.5.2...v1.5.3)
382
-
383
- **Closed issues:**
384
-
385
- - generate\_name generates bad hostnames [\#52](https://github.com/test-kitchen/kitchen-openstack/issues/52)
386
-
387
- **Merged pull requests:**
388
-
389
- - Fix bad hostnames being generated [\#53](https://github.com/test-kitchen/kitchen-openstack/pull/53) ([RoboticCheese](https://github.com/RoboticCheese))
390
- - Switch to Rubocop and clean up as much as possible [\#51](https://github.com/test-kitchen/kitchen-openstack/pull/51) ([RoboticCheese](https://github.com/RoboticCheese))
391
-
392
- ## [v1.5.2](https://github.com/test-kitchen/kitchen-openstack/tree/v1.5.2) (2014-05-31)
393
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.5.0...v1.5.2)
394
-
395
- **Merged pull requests:**
396
-
397
- - Roboticcheese/fix server name length loop bug [\#50](https://github.com/test-kitchen/kitchen-openstack/pull/50) ([RoboticCheese](https://github.com/RoboticCheese))
398
- - Hostname limit [\#49](https://github.com/test-kitchen/kitchen-openstack/pull/49) ([dschlenk](https://github.com/dschlenk))
399
-
400
- ## [v1.5.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.5.0) (2014-05-23)
401
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/0.10.0...v1.5.0)
402
-
403
- **Merged pull requests:**
404
-
405
- - Add OpenStack Ohai hints file [\#48](https://github.com/test-kitchen/kitchen-openstack/pull/48) ([dschlenk](https://github.com/dschlenk))
406
-
407
- ## [0.10.0](https://github.com/test-kitchen/kitchen-openstack/tree/0.10.0) (2014-05-09)
408
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.4.0...0.10.0)
409
-
410
- ## [v1.4.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.4.0) (2014-04-09)
411
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/0.9.1...v1.4.0)
412
-
413
- **Closed issues:**
414
-
415
- - Message: cannot copy directory [\#43](https://github.com/test-kitchen/kitchen-openstack/issues/43)
416
-
417
- **Merged pull requests:**
418
-
419
- - Use floating IP for ssh connection by default if defined or allocated from pool. [\#46](https://github.com/test-kitchen/kitchen-openstack/pull/46) ([dschlenk](https://github.com/dschlenk))
420
-
421
- ## [0.9.1](https://github.com/test-kitchen/kitchen-openstack/tree/0.9.1) (2014-03-12)
422
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.3.0...0.9.1)
423
-
424
- **Closed issues:**
425
-
426
- - Unable to create instance using network\_ref [\#42](https://github.com/test-kitchen/kitchen-openstack/issues/42)
427
-
428
- ## [v1.3.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.3.0) (2014-03-09)
429
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/0.9.0...v1.3.0)
430
-
431
- ## [0.9.0](https://github.com/test-kitchen/kitchen-openstack/tree/0.9.0) (2014-03-07)
432
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.1.0...0.9.0)
433
-
434
- **Implemented enhancements:**
435
-
436
- - Security Group support [\#36](https://github.com/test-kitchen/kitchen-openstack/issues/36)
437
-
438
- **Merged pull requests:**
439
-
440
- - Wait ssh connection for the specified port after the instance is created [\#41](https://github.com/test-kitchen/kitchen-openstack/pull/41) ([tenforward](https://github.com/tenforward))
441
- - option for user\_data to be passed to openstack [\#40](https://github.com/test-kitchen/kitchen-openstack/pull/40) ([wilreichert](https://github.com/wilreichert))
442
- - added basic support for networks [\#39](https://github.com/test-kitchen/kitchen-openstack/pull/39) ([monsterzz](https://github.com/monsterzz))
443
- - added support to assign security groups [\#37](https://github.com/test-kitchen/kitchen-openstack/pull/37) ([bears4barrett](https://github.com/bears4barrett))
444
- - Update URLs to test-kitchen org [\#35](https://github.com/test-kitchen/kitchen-openstack/pull/35) ([RoboticCheese](https://github.com/RoboticCheese))
445
- - Add Coveralls support, maybe [\#32](https://github.com/test-kitchen/kitchen-openstack/pull/32) ([RoboticCheese](https://github.com/RoboticCheese))
446
-
447
- ## [v1.1.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.1.0) (2013-12-07)
448
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v1.0.0...v1.1.0)
449
-
450
- **Fixed bugs:**
451
-
452
- - config\[:name\] is now used by Test Kitchen... [\#29](https://github.com/test-kitchen/kitchen-openstack/issues/29)
453
-
454
- **Merged pull requests:**
455
-
456
- - Fix \#29 - Rename 'name' option to 'server\_name' [\#31](https://github.com/test-kitchen/kitchen-openstack/pull/31) ([RoboticCheese](https://github.com/RoboticCheese))
457
-
458
- ## [v1.0.0](https://github.com/test-kitchen/kitchen-openstack/tree/v1.0.0) (2013-10-16)
459
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.5.0...v1.0.0)
460
-
461
- **Implemented enhancements:**
462
-
463
- - Support requesting a specific floating IP [\#21](https://github.com/test-kitchen/kitchen-openstack/issues/21)
464
- - Support friendly flavor names [\#23](https://github.com/test-kitchen/kitchen-openstack/issues/23)
465
- - Support friendly image names [\#22](https://github.com/test-kitchen/kitchen-openstack/issues/22)
466
-
467
- **Merged pull requests:**
468
-
469
- - synchronize lookup and assignment of floating ip [\#27](https://github.com/test-kitchen/kitchen-openstack/pull/27) ([jgawor](https://github.com/jgawor))
470
- - specify image or flavor using the name or regular expression [\#26](https://github.com/test-kitchen/kitchen-openstack/pull/26) ([jgawor](https://github.com/jgawor))
471
- - Refactoring and updating unit tests [\#25](https://github.com/test-kitchen/kitchen-openstack/pull/25) ([RoboticCheese](https://github.com/RoboticCheese))
472
- - SSH key tweaks [\#15](https://github.com/test-kitchen/kitchen-openstack/pull/15) ([hufman](https://github.com/hufman))
473
- - Floating ip support [\#14](https://github.com/test-kitchen/kitchen-openstack/pull/14) ([hufman](https://github.com/hufman))
474
-
475
- ## [v0.5.0](https://github.com/test-kitchen/kitchen-openstack/tree/v0.5.0) (2013-09-23)
476
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.8.1...v0.5.0)
477
-
478
- **Fixed bugs:**
479
-
480
- - Ordering of server.addresses isn't guaranteed [\#17](https://github.com/test-kitchen/kitchen-openstack/issues/17)
481
-
482
- **Closed issues:**
483
-
484
- - Cap generate\_name output to 64 characters [\#18](https://github.com/test-kitchen/kitchen-openstack/issues/18)
485
- - Don't assume network names of "public" and "private" [\#16](https://github.com/test-kitchen/kitchen-openstack/issues/16)
486
- - issue with latest test-kitchen 1.0.0.beta.2 and kitchen-openstack [\#13](https://github.com/test-kitchen/kitchen-openstack/issues/13)
487
-
488
- **Merged pull requests:**
489
-
490
- - Fix \#18 - Limit generated hostnames to 64 characters [\#20](https://github.com/test-kitchen/kitchen-openstack/pull/20) ([RoboticCheese](https://github.com/RoboticCheese))
491
- - Fix \#16 and \#17 - Rewrite get\_ip method [\#19](https://github.com/test-kitchen/kitchen-openstack/pull/19) ([RoboticCheese](https://github.com/RoboticCheese))
492
-
493
- ## [v0.8.1](https://github.com/test-kitchen/kitchen-openstack/tree/v0.8.1) (2013-06-14)
494
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.4.0...v0.8.1)
495
-
496
- ## [v0.4.0](https://github.com/test-kitchen/kitchen-openstack/tree/v0.4.0) (2013-06-06)
497
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.8.0...v0.4.0)
498
-
499
- **Merged pull requests:**
500
-
501
- - support get\_ip from user-defined network group [\#12](https://github.com/test-kitchen/kitchen-openstack/pull/12) ([ainoya](https://github.com/ainoya))
502
- - Care about ssh\_key option [\#11](https://github.com/test-kitchen/kitchen-openstack/pull/11) ([ainoya](https://github.com/ainoya))
503
-
504
- ## [v0.8.0](https://github.com/test-kitchen/kitchen-openstack/tree/v0.8.0) (2013-05-13)
505
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.2.0...v0.8.0)
506
-
507
- ## [v0.2.0](https://github.com/test-kitchen/kitchen-openstack/tree/v0.2.0) (2013-05-11)
508
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.7.1...v0.2.0)
509
-
510
- **Implemented enhancements:**
511
-
512
- - Support an optional region setting [\#8](https://github.com/test-kitchen/kitchen-openstack/issues/8)
513
- - Start building in TravisCI [\#6](https://github.com/test-kitchen/kitchen-openstack/issues/6)
514
- - RSpec Tests\(?\) [\#5](https://github.com/test-kitchen/kitchen-openstack/issues/5)
515
- - Use Project Name in Server Hostname [\#1](https://github.com/test-kitchen/kitchen-openstack/issues/1)
516
-
517
- **Fixed bugs:**
518
-
519
- - Servers Linger post-destroy [\#3](https://github.com/test-kitchen/kitchen-openstack/issues/3)
520
-
521
- **Closed issues:**
522
-
523
- - Fix Failing Style Checks [\#4](https://github.com/test-kitchen/kitchen-openstack/issues/4)
524
-
525
- **Merged pull requests:**
526
-
527
- - Add region and service name support [\#10](https://github.com/test-kitchen/kitchen-openstack/pull/10) ([RoboticCheese](https://github.com/RoboticCheese))
528
- - Working overkill RSpec tests [\#9](https://github.com/test-kitchen/kitchen-openstack/pull/9) ([RoboticCheese](https://github.com/RoboticCheese))
529
- - Jdh assorted enhancements [\#7](https://github.com/test-kitchen/kitchen-openstack/pull/7) ([RoboticCheese](https://github.com/RoboticCheese))
530
- - Allow users to use keys uploaded to Openstack [\#2](https://github.com/test-kitchen/kitchen-openstack/pull/2) ([stevendanna](https://github.com/stevendanna))
531
-
532
- ## [v0.7.1](https://github.com/test-kitchen/kitchen-openstack/tree/v0.7.1) (2013-04-11)
533
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/0.7.0...v0.7.1)
534
-
535
- ## [0.7.0](https://github.com/test-kitchen/kitchen-openstack/tree/0.7.0) (2013-03-09)
536
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.6.2...0.7.0)
537
-
538
- ## [v0.6.2](https://github.com/test-kitchen/kitchen-openstack/tree/v0.6.2) (2012-10-14)
539
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.6.0...v0.6.2)
540
-
541
- ## [v0.6.0](https://github.com/test-kitchen/kitchen-openstack/tree/v0.6.0) (2012-06-27)
542
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.5.4...v0.6.0)
543
-
544
- ## [v0.5.4](https://github.com/test-kitchen/kitchen-openstack/tree/v0.5.4) (2011-05-03)
545
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.5.3...v0.5.4)
546
-
547
- ## [v0.5.3](https://github.com/test-kitchen/kitchen-openstack/tree/v0.5.3) (2011-04-06)
548
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.5.2...v0.5.3)
549
-
550
- ## [v0.5.2](https://github.com/test-kitchen/kitchen-openstack/tree/v0.5.2) (2011-04-06)
551
- [Full Changelog](https://github.com/test-kitchen/kitchen-openstack/compare/v0.5.1...v0.5.2)
552
-
553
- ## [v0.5.1](https://github.com/test-kitchen/kitchen-openstack/tree/v0.5.1) (2011-04-05)
554
-
555
-
556
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*