knife-openstack 2.0.1 → 4.0.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 +5 -5
- data/lib/chef/knife/cloud/openstack_server_create_options.rb +64 -51
- data/lib/chef/knife/cloud/openstack_service.rb +33 -17
- data/lib/chef/knife/cloud/openstack_service_options.rb +34 -24
- data/lib/chef/knife/openstack_flavor_list.rb +18 -4
- data/lib/chef/knife/openstack_floating_ip_allocate.rb +22 -9
- data/lib/chef/knife/openstack_floating_ip_associate.rb +24 -12
- data/lib/chef/knife/openstack_floating_ip_disassociate.rb +25 -12
- data/lib/chef/knife/openstack_floating_ip_list.rb +18 -4
- data/lib/chef/knife/openstack_floating_ip_release.rb +16 -4
- data/lib/chef/knife/openstack_group_list.rb +21 -4
- data/lib/chef/knife/openstack_helpers.rb +20 -4
- data/lib/chef/knife/openstack_image_list.rb +22 -8
- data/lib/chef/knife/openstack_network_list.rb +18 -4
- data/lib/chef/knife/openstack_server_create.rb +36 -35
- data/lib/chef/knife/openstack_server_delete.rb +17 -5
- data/lib/chef/knife/openstack_server_list.rb +5 -6
- data/lib/chef/knife/openstack_server_show.rb +4 -5
- data/lib/chef/knife/openstack_volume_list.rb +10 -9
- data/lib/knife-openstack/version.rb +2 -2
- metadata +17 -91
- data/.github/ISSUE_TEMPLATE.md +0 -21
- data/.gitignore +0 -32
- data/.travis.yml +0 -10
- data/CHANGELOG.md +0 -335
- data/CONTRIBUTING.MD +0 -164
- data/Gemfile +0 -21
- data/README.md +0 -179
- data/Rakefile +0 -27
- data/knife-openstack.gemspec +0 -30
- data/spec/functional/flavor_list_func_spec.rb +0 -47
- data/spec/functional/floating_ip_list_func_spec.rb +0 -48
- data/spec/functional/group_list_func_spec.rb +0 -65
- data/spec/functional/image_list_func_spec.rb +0 -53
- data/spec/functional/network_list_func_spec.rb +0 -46
- data/spec/functional/server_create_func_spec.rb +0 -118
- data/spec/functional/server_delete_func_spec.rb +0 -84
- data/spec/functional/server_list_func_spec.rb +0 -98
- data/spec/functional/server_show_func_spec.rb +0 -46
- data/spec/functional/volume_list_func_spec.rb +0 -46
- data/spec/integration/cleanup.rb +0 -89
- data/spec/integration/config/environment.yml.sample +0 -13
- data/spec/integration/openstack_spec.rb +0 -649
- data/spec/spec_context.rb +0 -56
- data/spec/spec_helper.rb +0 -128
- data/spec/unit/openstack_flavor_list_spec.rb +0 -30
- data/spec/unit/openstack_floating_ip_allocate_spec.rb +0 -56
- data/spec/unit/openstack_floating_ip_associate_spec.rb +0 -40
- data/spec/unit/openstack_floating_ip_disassociate_spec.rb +0 -39
- data/spec/unit/openstack_floating_ip_list_spec.rb +0 -27
- data/spec/unit/openstack_floating_ip_release_spec.rb +0 -49
- data/spec/unit/openstack_group_list_spec.rb +0 -44
- data/spec/unit/openstack_image_list_spec.rb +0 -32
- data/spec/unit/openstack_network_list_spec.rb +0 -39
- data/spec/unit/openstack_server_create_spec.rb +0 -449
- data/spec/unit/openstack_server_delete_spec.rb +0 -43
- data/spec/unit/openstack_server_list_spec.rb +0 -32
- data/spec/unit/openstack_server_show_spec.rb +0 -42
- data/spec/unit/openstack_service_spec.rb +0 -128
- data/spec/unit/openstack_volume_list_spec.rb +0 -30
@@ -1,10 +1,9 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
1
|
#
|
3
|
-
# Author:: Seth Chisamore (<schisamo@
|
4
|
-
# Author:: Matt Ray (<matt@
|
2
|
+
# Author:: Seth Chisamore (<schisamo@chef.io>)
|
3
|
+
# Author:: Matt Ray (<matt@chef.io>)
|
5
4
|
# Author:: Chirag Jog (<chirag@clogeny.com>)
|
6
5
|
# Author:: Prabhu Das (<prabhu.das@clogeny.com>)
|
7
|
-
# Copyright:: Copyright
|
6
|
+
# Copyright:: Copyright 2011-2020 Chef Software, Inc.
|
8
7
|
# License:: Apache License, Version 2.0
|
9
8
|
#
|
10
9
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -21,8 +20,8 @@
|
|
21
20
|
#
|
22
21
|
|
23
22
|
require "chef/knife/cloud/server/list_command"
|
24
|
-
|
25
|
-
|
23
|
+
require_relative "openstack_helpers"
|
24
|
+
require_relative "cloud/openstack_service_options"
|
26
25
|
require "chef/knife/cloud/server/list_options"
|
27
26
|
|
28
27
|
class Chef
|
@@ -1,6 +1,5 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
1
|
#
|
3
|
-
# Copyright:: Copyright
|
2
|
+
# Copyright:: Copyright 2011-2020 Chef Software, Inc.
|
4
3
|
# License:: Apache License, Version 2.0
|
5
4
|
#
|
6
5
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -17,10 +16,10 @@
|
|
17
16
|
#
|
18
17
|
|
19
18
|
require "chef/knife/cloud/server/show_command"
|
20
|
-
|
19
|
+
require_relative "openstack_helpers"
|
21
20
|
require "chef/knife/cloud/server/show_options"
|
22
|
-
|
23
|
-
|
21
|
+
require_relative "cloud/openstack_service"
|
22
|
+
require_relative "cloud/openstack_service_options"
|
24
23
|
require "chef/knife/cloud/exceptions"
|
25
24
|
|
26
25
|
class Chef
|
@@ -1,9 +1,9 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
1
|
#
|
3
|
-
# Author:: Seth Chisamore (<schisamo@
|
4
|
-
# Author:: Matt Ray (<matt@
|
2
|
+
# Author:: Seth Chisamore (<schisamo@chef.io>)
|
3
|
+
# Author:: Matt Ray (<matt@chef.io>)
|
5
4
|
# Author:: Evan Felix (<karcaw@gmail.com>)
|
6
|
-
#
|
5
|
+
# Author:: Lance Albertson (<lance@osuosl.org>)
|
6
|
+
# Copyright:: Copyright 2011-2020 Chef Software, Inc.
|
7
7
|
# License:: Apache License, Version 2.0
|
8
8
|
#
|
9
9
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
@@ -20,8 +20,9 @@
|
|
20
20
|
#
|
21
21
|
|
22
22
|
require "chef/knife/cloud/list_resource_command"
|
23
|
-
|
24
|
-
|
23
|
+
require_relative "openstack_helpers"
|
24
|
+
require_relative "cloud/openstack_service_options"
|
25
|
+
require "chef/json_compat"
|
25
26
|
|
26
27
|
class Chef
|
27
28
|
class Knife
|
@@ -33,10 +34,10 @@ class Chef
|
|
33
34
|
banner "knife openstack volume list (options)"
|
34
35
|
|
35
36
|
def query_resource
|
36
|
-
@service.connection.volumes
|
37
|
+
@service.connection.volumes.all({})
|
37
38
|
rescue Excon::Errors::BadRequest => e
|
38
39
|
response = Chef::JSONCompat.from_json(e.response.body)
|
39
|
-
ui.fatal("Unknown server error (#{response[
|
40
|
+
ui.fatal("Unknown server error (#{response["badRequest"]["code"]}): #{response["badRequest"]["message"]}")
|
40
41
|
raise e
|
41
42
|
end
|
42
43
|
|
@@ -58,7 +59,7 @@ class Chef
|
|
58
59
|
end
|
59
60
|
rescue Excon::Errors::BadRequest => e
|
60
61
|
response = Chef::JSONCompat.from_json(e.response.body)
|
61
|
-
ui.fatal("Unknown server error (#{response[
|
62
|
+
ui.fatal("Unknown server error (#{response["badRequest"]["code"]}): #{response["badRequest"]["message"]}")
|
62
63
|
raise e
|
63
64
|
end
|
64
65
|
puts ui.list(volume_list, :uneven_columns_across, 5)
|
metadata
CHANGED
@@ -1,76 +1,65 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-openstack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- JJ Asghar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-06-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: fog
|
14
|
+
name: fog-openstack
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '1.
|
19
|
+
version: '1.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '1.
|
26
|
+
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: chef
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '15.11'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '15.11'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: knife-cloud
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: '4.0'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
55
|
-
description: A Chef knife plugin for OpenStack clouds.
|
54
|
+
version: '4.0'
|
55
|
+
description: A Chef Infra knife plugin for OpenStack clouds.
|
56
56
|
email:
|
57
57
|
- jj@chef.io
|
58
58
|
executables: []
|
59
59
|
extensions: []
|
60
|
-
extra_rdoc_files:
|
61
|
-
- README.md
|
62
|
-
- LICENSE
|
60
|
+
extra_rdoc_files: []
|
63
61
|
files:
|
64
|
-
- ".github/ISSUE_TEMPLATE.md"
|
65
|
-
- ".gitignore"
|
66
|
-
- ".travis.yml"
|
67
|
-
- CHANGELOG.md
|
68
|
-
- CONTRIBUTING.MD
|
69
|
-
- Gemfile
|
70
62
|
- LICENSE
|
71
|
-
- README.md
|
72
|
-
- Rakefile
|
73
|
-
- knife-openstack.gemspec
|
74
63
|
- lib/chef/knife/cloud/openstack_server_create_options.rb
|
75
64
|
- lib/chef/knife/cloud/openstack_service.rb
|
76
65
|
- lib/chef/knife/cloud/openstack_service_options.rb
|
@@ -90,37 +79,6 @@ files:
|
|
90
79
|
- lib/chef/knife/openstack_server_show.rb
|
91
80
|
- lib/chef/knife/openstack_volume_list.rb
|
92
81
|
- lib/knife-openstack/version.rb
|
93
|
-
- spec/functional/flavor_list_func_spec.rb
|
94
|
-
- spec/functional/floating_ip_list_func_spec.rb
|
95
|
-
- spec/functional/group_list_func_spec.rb
|
96
|
-
- spec/functional/image_list_func_spec.rb
|
97
|
-
- spec/functional/network_list_func_spec.rb
|
98
|
-
- spec/functional/server_create_func_spec.rb
|
99
|
-
- spec/functional/server_delete_func_spec.rb
|
100
|
-
- spec/functional/server_list_func_spec.rb
|
101
|
-
- spec/functional/server_show_func_spec.rb
|
102
|
-
- spec/functional/volume_list_func_spec.rb
|
103
|
-
- spec/integration/cleanup.rb
|
104
|
-
- spec/integration/config/environment.yml.sample
|
105
|
-
- spec/integration/config/incorrect_openstack.pem
|
106
|
-
- spec/integration/openstack_spec.rb
|
107
|
-
- spec/spec_context.rb
|
108
|
-
- spec/spec_helper.rb
|
109
|
-
- spec/unit/openstack_flavor_list_spec.rb
|
110
|
-
- spec/unit/openstack_floating_ip_allocate_spec.rb
|
111
|
-
- spec/unit/openstack_floating_ip_associate_spec.rb
|
112
|
-
- spec/unit/openstack_floating_ip_disassociate_spec.rb
|
113
|
-
- spec/unit/openstack_floating_ip_list_spec.rb
|
114
|
-
- spec/unit/openstack_floating_ip_release_spec.rb
|
115
|
-
- spec/unit/openstack_group_list_spec.rb
|
116
|
-
- spec/unit/openstack_image_list_spec.rb
|
117
|
-
- spec/unit/openstack_network_list_spec.rb
|
118
|
-
- spec/unit/openstack_server_create_spec.rb
|
119
|
-
- spec/unit/openstack_server_delete_spec.rb
|
120
|
-
- spec/unit/openstack_server_list_spec.rb
|
121
|
-
- spec/unit/openstack_server_show_spec.rb
|
122
|
-
- spec/unit/openstack_service_spec.rb
|
123
|
-
- spec/unit/openstack_volume_list_spec.rb
|
124
82
|
homepage: https://github.com/chef/knife-openstack
|
125
83
|
licenses:
|
126
84
|
- Apache-2.0
|
@@ -133,47 +91,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
133
91
|
requirements:
|
134
92
|
- - ">="
|
135
93
|
- !ruby/object:Gem::Version
|
136
|
-
version: 2.
|
94
|
+
version: '2.6'
|
137
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
138
96
|
requirements:
|
139
97
|
- - ">="
|
140
98
|
- !ruby/object:Gem::Version
|
141
99
|
version: '0'
|
142
100
|
requirements: []
|
143
|
-
|
144
|
-
rubygems_version: 2.5.1
|
101
|
+
rubygems_version: 3.0.3
|
145
102
|
signing_key:
|
146
103
|
specification_version: 4
|
147
|
-
summary: A Chef knife plugin for OpenStack clouds.
|
148
|
-
test_files:
|
149
|
-
- spec/functional/flavor_list_func_spec.rb
|
150
|
-
- spec/functional/floating_ip_list_func_spec.rb
|
151
|
-
- spec/functional/group_list_func_spec.rb
|
152
|
-
- spec/functional/image_list_func_spec.rb
|
153
|
-
- spec/functional/network_list_func_spec.rb
|
154
|
-
- spec/functional/server_create_func_spec.rb
|
155
|
-
- spec/functional/server_delete_func_spec.rb
|
156
|
-
- spec/functional/server_list_func_spec.rb
|
157
|
-
- spec/functional/server_show_func_spec.rb
|
158
|
-
- spec/functional/volume_list_func_spec.rb
|
159
|
-
- spec/integration/cleanup.rb
|
160
|
-
- spec/integration/config/environment.yml.sample
|
161
|
-
- spec/integration/config/incorrect_openstack.pem
|
162
|
-
- spec/integration/openstack_spec.rb
|
163
|
-
- spec/spec_context.rb
|
164
|
-
- spec/spec_helper.rb
|
165
|
-
- spec/unit/openstack_flavor_list_spec.rb
|
166
|
-
- spec/unit/openstack_floating_ip_allocate_spec.rb
|
167
|
-
- spec/unit/openstack_floating_ip_associate_spec.rb
|
168
|
-
- spec/unit/openstack_floating_ip_disassociate_spec.rb
|
169
|
-
- spec/unit/openstack_floating_ip_list_spec.rb
|
170
|
-
- spec/unit/openstack_floating_ip_release_spec.rb
|
171
|
-
- spec/unit/openstack_group_list_spec.rb
|
172
|
-
- spec/unit/openstack_image_list_spec.rb
|
173
|
-
- spec/unit/openstack_network_list_spec.rb
|
174
|
-
- spec/unit/openstack_server_create_spec.rb
|
175
|
-
- spec/unit/openstack_server_delete_spec.rb
|
176
|
-
- spec/unit/openstack_server_list_spec.rb
|
177
|
-
- spec/unit/openstack_server_show_spec.rb
|
178
|
-
- spec/unit/openstack_service_spec.rb
|
179
|
-
- spec/unit/openstack_volume_list_spec.rb
|
104
|
+
summary: A Chef Infra knife plugin for OpenStack clouds.
|
105
|
+
test_files: []
|
data/.github/ISSUE_TEMPLATE.md
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
# Version:
|
2
|
-
|
3
|
-
[Version of the project installed]
|
4
|
-
|
5
|
-
# Environment: [Details about the environment such as the Operating System, cookbook details, etc...]
|
6
|
-
|
7
|
-
# Scenario:
|
8
|
-
|
9
|
-
[What you are trying to achieve and you can't?]
|
10
|
-
|
11
|
-
# Steps to Reproduce:
|
12
|
-
|
13
|
-
[If you are filing an issue what are the things we need to do in order to repro your problem?]
|
14
|
-
|
15
|
-
# Expected Result:
|
16
|
-
|
17
|
-
[What are you expecting to happen as the consequence of above reproduction steps?]
|
18
|
-
|
19
|
-
# Actual Result:
|
20
|
-
|
21
|
-
[What actually happens after the reproduction steps?]
|
data/.gitignore
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
*.gem
|
2
|
-
.bundle
|
3
|
-
.rvmrc
|
4
|
-
Gemfile.lock
|
5
|
-
.autotest
|
6
|
-
coverage
|
7
|
-
.DS_Store
|
8
|
-
pkg
|
9
|
-
*/tags
|
10
|
-
|
11
|
-
# ignore some common Bundler 'binstubs' directory names
|
12
|
-
# http://gembundler.com/man/bundle-exec.1.html
|
13
|
-
b/
|
14
|
-
binstubs/
|
15
|
-
|
16
|
-
# RVM and RBENV ruby version files
|
17
|
-
.rbenv-version
|
18
|
-
.rvmrc
|
19
|
-
|
20
|
-
# chruby
|
21
|
-
.direnv/
|
22
|
-
.envrc
|
23
|
-
.ruby-version
|
24
|
-
|
25
|
-
# Documentation
|
26
|
-
_site/*
|
27
|
-
.yardoc/
|
28
|
-
doc/
|
29
|
-
pkg/*
|
30
|
-
|
31
|
-
#keys
|
32
|
-
*.pem
|
data/.travis.yml
DELETED
data/CHANGELOG.md
DELETED
@@ -1,335 +0,0 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [v2.0.1](https://github.com/chef/knife-openstack/tree/v2.0.1)
|
4
|
-
|
5
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v2.0.0...v2.0.1)
|
6
|
-
|
7
|
-
**Merged pull requests:**
|
8
|
-
|
9
|
-
- v2.0.1 [\#200](https://github.com/chef/knife-openstack/pull/200) ([jjasghar](https://github.com/jjasghar))
|
10
|
-
- fix per Andrius47 [\#199](https://github.com/chef/knife-openstack/pull/199) ([jjasghar](https://github.com/jjasghar))
|
11
|
-
|
12
|
-
## [v2.0.0](https://github.com/chef/knife-openstack/tree/v2.0.0) (2017-01-04)
|
13
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2...v2.0.0)
|
14
|
-
|
15
|
-
**Implemented enhancements:**
|
16
|
-
|
17
|
-
- Require Chef 12 and resolve all Chefstyle warnings [\#191](https://github.com/chef/knife-openstack/pull/191) ([tas50](https://github.com/tas50))
|
18
|
-
- Add contributing section to the readme [\#190](https://github.com/chef/knife-openstack/pull/190) ([tas50](https://github.com/tas50))
|
19
|
-
- Add license to the gemspec & update Travis config [\#184](https://github.com/chef/knife-openstack/pull/184) ([tas50](https://github.com/tas50))
|
20
|
-
- Improve the readme [\#182](https://github.com/chef/knife-openstack/pull/182) ([jjasghar](https://github.com/jjasghar))
|
21
|
-
|
22
|
-
**Closed issues:**
|
23
|
-
|
24
|
-
- Does Knife OpenStack Plugin support nova-networking? [\#187](https://github.com/chef/knife-openstack/issues/187)
|
25
|
-
- knife openstack server create fails on Windows2012r2 on WinRM connection [\#186](https://github.com/chef/knife-openstack/issues/186)
|
26
|
-
- chef/knife/openstack\_helpers \(LoadError\) [\#185](https://github.com/chef/knife-openstack/issues/185)
|
27
|
-
- Request for knife openstack stack ... [\#183](https://github.com/chef/knife-openstack/issues/183)
|
28
|
-
- Update README [\#180](https://github.com/chef/knife-openstack/issues/180)
|
29
|
-
- 1.3.2.pre Release [\#177](https://github.com/chef/knife-openstack/issues/177)
|
30
|
-
|
31
|
-
**Merged pull requests:**
|
32
|
-
|
33
|
-
- Release 2.0.0 [\#195](https://github.com/chef/knife-openstack/pull/195) ([tas50](https://github.com/tas50))
|
34
|
-
- Test on Ruby 2.2 and 2.3 only [\#189](https://github.com/chef/knife-openstack/pull/189) ([jjasghar](https://github.com/jjasghar))
|
35
|
-
|
36
|
-
## [v1.3.2](https://github.com/chef/knife-openstack/tree/v1.3.2) (2015-10-07)
|
37
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.rc1...v1.3.2)
|
38
|
-
|
39
|
-
## [v1.3.2.rc1](https://github.com/chef/knife-openstack/tree/v1.3.2.rc1) (2015-10-01)
|
40
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.pre.1...v1.3.2.rc1)
|
41
|
-
|
42
|
-
**Implemented enhancements:**
|
43
|
-
|
44
|
-
- Support all Fog OpenStack options [\#179](https://github.com/chef/knife-openstack/pull/179) ([BobbyRyterski](https://github.com/BobbyRyterski))
|
45
|
-
|
46
|
-
**Fixed bugs:**
|
47
|
-
|
48
|
-
- knife-openstack server list [\#175](https://github.com/chef/knife-openstack/issues/175)
|
49
|
-
|
50
|
-
## [v1.3.2.pre.1](https://github.com/chef/knife-openstack/tree/v1.3.2.pre.1) (2015-09-15)
|
51
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.pre...v1.3.2.pre.1)
|
52
|
-
|
53
|
-
**Fixed bugs:**
|
54
|
-
|
55
|
-
- Fixed ip addresses not visible issue [\#178](https://github.com/chef/knife-openstack/pull/178) ([Vasu1105](https://github.com/Vasu1105))
|
56
|
-
|
57
|
-
**Closed issues:**
|
58
|
-
|
59
|
-
- uninitialized constant Chef::Knife::Cloud::Command \(NameError\) [\#172](https://github.com/chef/knife-openstack/issues/172)
|
60
|
-
|
61
|
-
**Merged pull requests:**
|
62
|
-
|
63
|
-
- 1.3.2.pre release. [\#176](https://github.com/chef/knife-openstack/pull/176) ([jjasghar](https://github.com/jjasghar))
|
64
|
-
|
65
|
-
## [v1.3.2.pre](https://github.com/chef/knife-openstack/tree/v1.3.2.pre) (2015-09-04)
|
66
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.1...v1.3.2.pre)
|
67
|
-
|
68
|
-
**Fixed bugs:**
|
69
|
-
|
70
|
-
- Fix cloud command class loading [\#174](https://github.com/chef/knife-openstack/pull/174) ([Cluster444](https://github.com/Cluster444))
|
71
|
-
|
72
|
-
## [v1.3.1](https://github.com/chef/knife-openstack/tree/v1.3.1) (2015-07-18)
|
73
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.0...v1.3.1)
|
74
|
-
|
75
|
-
## [v1.3.0](https://github.com/chef/knife-openstack/tree/v1.3.0) (2015-07-18)
|
76
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.0.rc.0...v1.3.0)
|
77
|
-
|
78
|
-
**Implemented enhancements:**
|
79
|
-
|
80
|
-
- Set the openstack ohai hint when creating a server [\#171](https://github.com/chef/knife-openstack/pull/171) ([mtougeron](https://github.com/mtougeron))
|
81
|
-
- Add floating ip commands [\#170](https://github.com/chef/knife-openstack/pull/170) ([Vasu1105](https://github.com/Vasu1105))
|
82
|
-
|
83
|
-
**Closed issues:**
|
84
|
-
|
85
|
-
- knife openstack floatip \<args\> ? [\#138](https://github.com/chef/knife-openstack/issues/138)
|
86
|
-
|
87
|
-
## [v1.3.0.rc.0](https://github.com/chef/knife-openstack/tree/v1.3.0.rc.0) (2015-06-25)
|
88
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0...v1.3.0.rc.0)
|
89
|
-
|
90
|
-
**Implemented enhancements:**
|
91
|
-
|
92
|
-
- Support --format option [\#166](https://github.com/chef/knife-openstack/pull/166) ([NimishaS](https://github.com/NimishaS))
|
93
|
-
|
94
|
-
**Closed issues:**
|
95
|
-
|
96
|
-
- Not finding Private IP During Bootstrap [\#146](https://github.com/chef/knife-openstack/issues/146)
|
97
|
-
|
98
|
-
## [v1.2.0](https://github.com/chef/knife-openstack/tree/v1.2.0) (2015-06-18)
|
99
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0.rc2...v1.2.0)
|
100
|
-
|
101
|
-
**Closed issues:**
|
102
|
-
|
103
|
-
- both -F json ad --format json does not work [\#160](https://github.com/chef/knife-openstack/issues/160)
|
104
|
-
|
105
|
-
**Merged pull requests:**
|
106
|
-
|
107
|
-
- Release 1.2.0 [\#165](https://github.com/chef/knife-openstack/pull/165) ([jjasghar](https://github.com/jjasghar))
|
108
|
-
|
109
|
-
## [v1.2.0.rc2](https://github.com/chef/knife-openstack/tree/v1.2.0.rc2) (2015-06-10)
|
110
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0.rc1...v1.2.0.rc2)
|
111
|
-
|
112
|
-
**Closed issues:**
|
113
|
-
|
114
|
-
- Should support bootstrap-template option [\#161](https://github.com/chef/knife-openstack/issues/161)
|
115
|
-
|
116
|
-
## [v1.2.0.rc1](https://github.com/chef/knife-openstack/tree/v1.2.0.rc1) (2015-06-04)
|
117
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v1.1.0...v1.2.0.rc1)
|
118
|
-
|
119
|
-
**Implemented enhancements:**
|
120
|
-
|
121
|
-
- Allow users to specify alternate private networks. [\#163](https://github.com/chef/knife-openstack/pull/163) ([elbandito](https://github.com/elbandito))
|
122
|
-
- Add volume capabilities to allow listing and attaching volumes [\#142](https://github.com/chef/knife-openstack/pull/142) ([karcaw](https://github.com/karcaw))
|
123
|
-
|
124
|
-
**Closed issues:**
|
125
|
-
|
126
|
-
- Serious Bug with server show instance-id [\#164](https://github.com/chef/knife-openstack/issues/164)
|
127
|
-
- openstack server create not working with floating ips [\#162](https://github.com/chef/knife-openstack/issues/162)
|
128
|
-
- handle\_excon\_exception: undefined method [\#153](https://github.com/chef/knife-openstack/issues/153)
|
129
|
-
- support multi region for OpenStack [\#152](https://github.com/chef/knife-openstack/issues/152)
|
130
|
-
- knife openstack fails to bootstrap server [\#151](https://github.com/chef/knife-openstack/issues/151)
|
131
|
-
- Dont see ip addresses with knife openstack server list [\#150](https://github.com/chef/knife-openstack/issues/150)
|
132
|
-
- Get ERROR: You have either requested an invalid floating IP address or none are available. [\#149](https://github.com/chef/knife-openstack/issues/149)
|
133
|
-
- Unable to create server w/ v1.0 [\#147](https://github.com/chef/knife-openstack/issues/147)
|
134
|
-
- no support for multi-region - major blocker [\#139](https://github.com/chef/knife-openstack/issues/139)
|
135
|
-
- knife.rb proxy settings not honored [\#137](https://github.com/chef/knife-openstack/issues/137)
|
136
|
-
- Add support for authentication with domain id and name? [\#134](https://github.com/chef/knife-openstack/issues/134)
|
137
|
-
|
138
|
-
## [v1.1.0](https://github.com/chef/knife-openstack/tree/v1.1.0) (2015-03-06)
|
139
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0...v1.1.0)
|
140
|
-
|
141
|
-
**Implemented enhancements:**
|
142
|
-
|
143
|
-
- Add ability to specify host when using the -Z flag to specify availability-zone [\#158](https://github.com/chef/knife-openstack/issues/158)
|
144
|
-
- Support multiple regions [\#148](https://github.com/chef/knife-openstack/pull/148) ([jedipunkz](https://github.com/jedipunkz))
|
145
|
-
|
146
|
-
**Fixed bugs:**
|
147
|
-
|
148
|
-
- Fix failing rspec tests [\#155](https://github.com/chef/knife-openstack/pull/155) ([PierreRambaud](https://github.com/PierreRambaud))
|
149
|
-
- Fix travis badge in the readme [\#154](https://github.com/chef/knife-openstack/pull/154) ([PierreRambaud](https://github.com/PierreRambaud))
|
150
|
-
|
151
|
-
**Merged pull requests:**
|
152
|
-
|
153
|
-
- 1.1.0 release branch [\#159](https://github.com/chef/knife-openstack/pull/159) ([jjasghar](https://github.com/jjasghar))
|
154
|
-
- Update email addresses and copyright date [\#157](https://github.com/chef/knife-openstack/pull/157) ([nathenharvey](https://github.com/nathenharvey))
|
155
|
-
- remove deprecated 1.9 support and add 2.2.0 [\#156](https://github.com/chef/knife-openstack/pull/156) ([cmluciano](https://github.com/cmluciano))
|
156
|
-
|
157
|
-
## [1.0.0](https://github.com/chef/knife-openstack/tree/1.0.0) (2014-10-07)
|
158
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0.rc2...1.0.0)
|
159
|
-
|
160
|
-
## [1.0.0.rc2](https://github.com/chef/knife-openstack/tree/1.0.0.rc2) (2014-09-29)
|
161
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0.rc1...1.0.0.rc2)
|
162
|
-
|
163
|
-
**Implemented enhancements:**
|
164
|
-
|
165
|
-
- Improve port id detection [\#144](https://github.com/chef/knife-openstack/pull/144) ([karcaw](https://github.com/karcaw))
|
166
|
-
|
167
|
-
**Closed issues:**
|
168
|
-
|
169
|
-
- 1.0.0.rc1 does not grab port id properly.. [\#143](https://github.com/chef/knife-openstack/issues/143)
|
170
|
-
|
171
|
-
**Merged pull requests:**
|
172
|
-
|
173
|
-
- Updated Gemfile to the released knife-cloud gem [\#145](https://github.com/chef/knife-openstack/pull/145) ([jjasghar](https://github.com/jjasghar))
|
174
|
-
|
175
|
-
## [1.0.0.rc1](https://github.com/chef/knife-openstack/tree/1.0.0.rc1) (2014-09-24)
|
176
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/0.10.0...1.0.0.rc1)
|
177
|
-
|
178
|
-
**Implemented enhancements:**
|
179
|
-
|
180
|
-
- Add Fog dependency to the Gemspec [\#136](https://github.com/chef/knife-openstack/pull/136) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
181
|
-
- Implement changes for post connection validation [\#127](https://github.com/chef/knife-openstack/pull/127) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
182
|
-
- Specify name or id for image and flavor in server create [\#120](https://github.com/chef/knife-openstack/pull/120) ([kaustubh-d](https://github.com/kaustubh-d))
|
183
|
-
- KNIFE-478: Add ability to bootstrap with SSH passwords [\#118](https://github.com/chef/knife-openstack/pull/118) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
184
|
-
- Added network id option to server create command [\#114](https://github.com/chef/knife-openstack/pull/114) ([prabhu-das](https://github.com/prabhu-das))
|
185
|
-
- KNIFE-494 add options for secret and secret\_file to support encrypted data bags [\#113](https://github.com/chef/knife-openstack/pull/113) ([jvervlied](https://github.com/jvervlied))
|
186
|
-
- Sorting list output by name field [\#112](https://github.com/chef/knife-openstack/pull/112) ([prabhu-das](https://github.com/prabhu-das))
|
187
|
-
- KNIFE-477: Delete server by name if instance\_id isn't found [\#111](https://github.com/chef/knife-openstack/pull/111) ([ameyavarade](https://github.com/ameyavarade))
|
188
|
-
- Add 'knife openstack network list' [\#110](https://github.com/chef/knife-openstack/pull/110) ([prabhu-das](https://github.com/prabhu-das))
|
189
|
-
- KNIFE-368 Ability to specify metadata during OpenStack server create [\#109](https://github.com/chef/knife-openstack/pull/109) ([ameyavarade](https://github.com/ameyavarade))
|
190
|
-
- KNIFE-428 Basic availability zones support [\#108](https://github.com/chef/knife-openstack/pull/108) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
191
|
-
|
192
|
-
**Fixed bugs:**
|
193
|
-
|
194
|
-
- Fixes Associate IPs for neutron [\#141](https://github.com/chef/knife-openstack/pull/141) ([jjasghar](https://github.com/jjasghar))
|
195
|
-
- Fix bug with --no-network [\#125](https://github.com/chef/knife-openstack/pull/125) ([prabhu-das](https://github.com/prabhu-das))
|
196
|
-
- KNIFE-474 knife openstack group list throws a fog deprecation warning [\#107](https://github.com/chef/knife-openstack/pull/107) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
197
|
-
- KNIFE-467 --no-network fails to find first network IP address [\#106](https://github.com/chef/knife-openstack/pull/106) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
198
|
-
- README: Clarify misleading knife.rb snippet [\#104](https://github.com/chef/knife-openstack/pull/104) ([srenatus](https://github.com/srenatus))
|
199
|
-
|
200
|
-
**Merged pull requests:**
|
201
|
-
|
202
|
-
- \[knife-cloud\] Update integration tests for post connection validation [\#128](https://github.com/chef/knife-openstack/pull/128) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
203
|
-
- \[knife-cloud\] Integration tests for metadata,network-ids,delete server\_by\_name and availability-zone option [\#126](https://github.com/chef/knife-openstack/pull/126) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
204
|
-
- \[knife-openstack\] Fix rspec deprecation warnings [\#124](https://github.com/chef/knife-openstack/pull/124) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
205
|
-
- \[knife-cloud\] Refactor rspec tests [\#122](https://github.com/chef/knife-openstack/pull/122) ([prabhu-das](https://github.com/prabhu-das))
|
206
|
-
- \[knife-cloud\] Fix rspec deprecation warnings [\#121](https://github.com/chef/knife-openstack/pull/121) ([ameyavarade](https://github.com/ameyavarade))
|
207
|
-
- \[knife-cloud\] Updated Integration tests [\#119](https://github.com/chef/knife-openstack/pull/119) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
208
|
-
- \[knife-cloud\] Added coverage for --bootstrap-network, --private-network and --no-network [\#117](https://github.com/chef/knife-openstack/pull/117) ([ameyavarade](https://github.com/ameyavarade))
|
209
|
-
- \[knife-cloud\] Readme cleanup and Chef rebranding [\#116](https://github.com/chef/knife-openstack/pull/116) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
210
|
-
- Excon exception spec fix, code change related to knife-cloud. [\#105](https://github.com/chef/knife-openstack/pull/105) ([prabhu-das](https://github.com/prabhu-das))
|
211
|
-
|
212
|
-
## [0.10.0](https://github.com/chef/knife-openstack/tree/0.10.0) (2014-05-09)
|
213
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/0.9.1...0.10.0)
|
214
|
-
|
215
|
-
**Implemented enhancements:**
|
216
|
-
|
217
|
-
- KNIFE-478: Add ability to bootstrap with SSH passwords [\#101](https://github.com/chef/knife-openstack/pull/101) ([jmccann](https://github.com/jmccann))
|
218
|
-
- Remove activesupport gem dependency and fix broken tests [\#100](https://github.com/chef/knife-openstack/pull/100) ([prabhu-das](https://github.com/prabhu-das))
|
219
|
-
- Add --no-network flag [\#97](https://github.com/chef/knife-openstack/pull/97) ([prabhu-das](https://github.com/prabhu-das))
|
220
|
-
- OC-11565 Add support for parameter --user-data during server create for knife-cloud [\#94](https://github.com/chef/knife-openstack/pull/94) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
221
|
-
- OC-11564 Update Openstack: Add bootstrap\_network option support [\#93](https://github.com/chef/knife-openstack/pull/93) ([ameyavarade](https://github.com/ameyavarade))
|
222
|
-
- OC-11563 Add support for setting OpenStack endpoint type for Knife-Cloud [\#92](https://github.com/chef/knife-openstack/pull/92) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
223
|
-
- \[KNIFE-423\] Add new command 'knife openstack network list', add option --network-ids... [\#78](https://github.com/chef/knife-openstack/pull/78) ([jvervlied](https://github.com/jvervlied))
|
224
|
-
|
225
|
-
**Merged pull requests:**
|
226
|
-
|
227
|
-
- OC-11566 Update Company name from Opscode, Inc. to Chef Software Inc. [\#95](https://github.com/chef/knife-openstack/pull/95) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
228
|
-
- Unit test for custom\_arguments passed. [\#77](https://github.com/chef/knife-openstack/pull/77) ([prabhu-das](https://github.com/prabhu-das))
|
229
|
-
- OC-10525 knife-cloud integration test cleanup Jenkins job Edit [\#76](https://github.com/chef/knife-openstack/pull/76) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
230
|
-
|
231
|
-
## [0.9.1](https://github.com/chef/knife-openstack/tree/0.9.1) (2014-03-12)
|
232
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/0.9.0...0.9.1)
|
233
|
-
|
234
|
-
## [0.9.0](https://github.com/chef/knife-openstack/tree/0.9.0) (2014-03-07)
|
235
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.8.1...0.9.0)
|
236
|
-
|
237
|
-
**Implemented enhancements:**
|
238
|
-
|
239
|
-
- KNIFE-395: Add support for setting service endpoint type [\#87](https://github.com/chef/knife-openstack/pull/87) ([adamedx](https://github.com/adamedx))
|
240
|
-
- OC-11204 - Exception handling and abstraction [\#84](https://github.com/chef/knife-openstack/pull/84) ([kaustubh-d](https://github.com/kaustubh-d))
|
241
|
-
- \[KNIFE-435\] Added parameter --user-data for cloud-init payload [\#82](https://github.com/chef/knife-openstack/pull/82) ([thielena](https://github.com/thielena))
|
242
|
-
- OC-10521 knife-cloud: knife openstack should support summary display during create and new command [\#74](https://github.com/chef/knife-openstack/pull/74) ([ameyavarade](https://github.com/ameyavarade))
|
243
|
-
- OC-10520 Knife-cloud should add data summary methods [\#73](https://github.com/chef/knife-openstack/pull/73) ([ameyavarade](https://github.com/ameyavarade))
|
244
|
-
- \[KNIFE-395\] Add support for setting OpenStack endpoint type [\#72](https://github.com/chef/knife-openstack/pull/72) ([DavidWittman](https://github.com/DavidWittman))
|
245
|
-
- KNIFE-382 :addssupport for --json-attributes to knife-openstack [\#71](https://github.com/chef/knife-openstack/pull/71) ([adamedx](https://github.com/adamedx))
|
246
|
-
- OC-9430: Knife cloud should support endpoint config and cli option [\#67](https://github.com/chef/knife-openstack/pull/67) ([adamedx](https://github.com/adamedx))
|
247
|
-
- OC-9613: os\_image\_type should be inferred from bootstrap protocol if not specified to knife cloud [\#63](https://github.com/chef/knife-openstack/pull/63) ([adamedx](https://github.com/adamedx))
|
248
|
-
- \[OC-9613\] \[OC-9450\] \[OC-9533\] Sprint88-merged [\#61](https://github.com/chef/knife-openstack/pull/61) ([muktaa](https://github.com/muktaa))
|
249
|
-
- \[OC-9533\] knife CLOUD server list needs to expose Chef data \(node names, attributes\) [\#57](https://github.com/chef/knife-openstack/pull/57) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
250
|
-
- OC-9390: Handle exit of knife plugin, with correct exit status and from common place in code [\#54](https://github.com/chef/knife-openstack/pull/54) ([adamedx](https://github.com/adamedx))
|
251
|
-
- OC-9368: image\_os\_type option should be compulsory in knife-openstack. [\#52](https://github.com/chef/knife-openstack/pull/52) ([adamedx](https://github.com/adamedx))
|
252
|
-
- OC-9368 Image\_os\_type option should be compulsory in knife-openstack. [\#48](https://github.com/chef/knife-openstack/pull/48) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
253
|
-
- Openstack changes for Sprint86 merged into a common branch [\#44](https://github.com/chef/knife-openstack/pull/44) ([muktaa](https://github.com/muktaa))
|
254
|
-
- \[KNIFE-382\] Add support for --json-attributes [\#43](https://github.com/chef/knife-openstack/pull/43) ([johnnydtan](https://github.com/johnnydtan))
|
255
|
-
- OC-8572: Knife cloud openstack create with bootstrap Windows [\#40](https://github.com/chef/knife-openstack/pull/40) ([adamedx](https://github.com/adamedx))
|
256
|
-
- OC-8822: Knife cloud openstack server list command [\#37](https://github.com/chef/knife-openstack/pull/37) ([adamedx](https://github.com/adamedx))
|
257
|
-
- Resource Listing changes \(OC 8822, 8824, 8825, 8826\) [\#32](https://github.com/chef/knife-openstack/pull/32) ([muktaa](https://github.com/muktaa))
|
258
|
-
- Refactored knife-openstack code [\#31](https://github.com/chef/knife-openstack/pull/31) ([muktaa](https://github.com/muktaa))
|
259
|
-
|
260
|
-
**Fixed bugs:**
|
261
|
-
|
262
|
-
- OC-10924 Fixed private\_network field not renamed correctly in knife-openstack refactored code [\#81](https://github.com/chef/knife-openstack/pull/81) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
263
|
-
- OC-9451: knife-openstack throws error on server list when server is in invalid nw state [\#68](https://github.com/chef/knife-openstack/pull/68) ([adamedx](https://github.com/adamedx))
|
264
|
-
|
265
|
-
**Merged pull requests:**
|
266
|
-
|
267
|
-
- OC 10878 openstack test fix for knife-cloud change. [\#79](https://github.com/chef/knife-openstack/pull/79) ([prabhu-das](https://github.com/prabhu-das))
|
268
|
-
- Oc 9596 Succesfully run the integration tests on jenkins for knife-openstack\(based on knife-cloud\) [\#65](https://github.com/chef/knife-openstack/pull/65) ([siddheshwar-more](https://github.com/siddheshwar-more))
|
269
|
-
- \[OC-9596\] openstack refactor integration tests [\#58](https://github.com/chef/knife-openstack/pull/58) ([muktaa](https://github.com/muktaa))
|
270
|
-
- Sprint 86: Merge Gem dependencies, Travis support [\#46](https://github.com/chef/knife-openstack/pull/46) ([adamedx](https://github.com/adamedx))
|
271
|
-
- Fixing merge issues [\#42](https://github.com/chef/knife-openstack/pull/42) ([muktaa](https://github.com/muktaa))
|
272
|
-
- OC-9112 update gem dependency [\#41](https://github.com/chef/knife-openstack/pull/41) ([muktaa](https://github.com/muktaa))
|
273
|
-
- OC-8849: Knife-openstack's knife-cloud pointing to git repo of opscode's knife-cl... [\#38](https://github.com/chef/knife-openstack/pull/38) ([adamedx](https://github.com/adamedx))
|
274
|
-
- oc-8849 Knife-openstack's knife-cloud pointing to git repo of opscode's knife-cl... [\#35](https://github.com/chef/knife-openstack/pull/35) ([prabhu-das](https://github.com/prabhu-das))
|
275
|
-
|
276
|
-
## [v0.8.1](https://github.com/chef/knife-openstack/tree/v0.8.1) (2013-06-14)
|
277
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.8.0...v0.8.1)
|
278
|
-
|
279
|
-
**Implemented enhancements:**
|
280
|
-
|
281
|
-
- KNIFE-296 and KNIFE-304 fixes [\#28](https://github.com/chef/knife-openstack/pull/28) ([mattray](https://github.com/mattray))
|
282
|
-
|
283
|
-
## [v0.8.0](https://github.com/chef/knife-openstack/tree/v0.8.0) (2013-05-13)
|
284
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.7.1...v0.8.0)
|
285
|
-
|
286
|
-
**Implemented enhancements:**
|
287
|
-
|
288
|
-
- Windows Bootstrapping [\#25](https://github.com/chef/knife-openstack/pull/25) ([chirag-jog](https://github.com/chirag-jog))
|
289
|
-
|
290
|
-
## [v0.7.1](https://github.com/chef/knife-openstack/tree/v0.7.1) (2013-04-11)
|
291
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/0.7.0...v0.7.1)
|
292
|
-
|
293
|
-
## [0.7.0](https://github.com/chef/knife-openstack/tree/0.7.0) (2013-03-09)
|
294
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.6.2...0.7.0)
|
295
|
-
|
296
|
-
## [v0.6.2](https://github.com/chef/knife-openstack/tree/v0.6.2) (2012-10-14)
|
297
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.6.0...v0.6.2)
|
298
|
-
|
299
|
-
## [v0.6.0](https://github.com/chef/knife-openstack/tree/v0.6.0) (2012-06-27)
|
300
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.4...v0.6.0)
|
301
|
-
|
302
|
-
**Implemented enhancements:**
|
303
|
-
|
304
|
-
- Updated chef gem installation instruction after official 0.10.0 release [\#4](https://github.com/chef/knife-openstack/pull/4) ([agoddard](https://github.com/agoddard))
|
305
|
-
|
306
|
-
**Closed issues:**
|
307
|
-
|
308
|
-
- Fog error on server create [\#5](https://github.com/chef/knife-openstack/issues/5)
|
309
|
-
|
310
|
-
## [v0.5.4](https://github.com/chef/knife-openstack/tree/v0.5.4) (2011-05-03)
|
311
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.3...v0.5.4)
|
312
|
-
|
313
|
-
**Fixed bugs:**
|
314
|
-
|
315
|
-
- CHEF-2194 Work around nil values returned from openstack [\#3](https://github.com/chef/knife-openstack/pull/3) ([drbrain](https://github.com/drbrain))
|
316
|
-
|
317
|
-
## [v0.5.3](https://github.com/chef/knife-openstack/tree/v0.5.3) (2011-04-06)
|
318
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.2...v0.5.3)
|
319
|
-
|
320
|
-
## [v0.5.2](https://github.com/chef/knife-openstack/tree/v0.5.2) (2011-04-06)
|
321
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.1...v0.5.2)
|
322
|
-
|
323
|
-
**Fixed bugs:**
|
324
|
-
|
325
|
-
- Fixes CHEF-2191 [\#1](https://github.com/chef/knife-openstack/pull/1) ([drbrain](https://github.com/drbrain))
|
326
|
-
|
327
|
-
## [v0.5.1](https://github.com/chef/knife-openstack/tree/v0.5.1) (2011-04-05)
|
328
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.0...v0.5.1)
|
329
|
-
|
330
|
-
## [v0.5.0](https://github.com/chef/knife-openstack/tree/v0.5.0) (2011-03-30)
|
331
|
-
[Full Changelog](https://github.com/chef/knife-openstack/compare/0449e574d540d0d7fbc96ffebad68ec1ae215423...v0.5.0)
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|