knife-openstack 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +5 -5
  2. data/lib/chef/knife/cloud/openstack_server_create_options.rb +16 -1
  3. data/lib/chef/knife/cloud/openstack_service.rb +14 -2
  4. data/lib/chef/knife/cloud/openstack_service_options.rb +17 -1
  5. data/lib/chef/knife/openstack_flavor_list.rb +16 -2
  6. data/lib/chef/knife/openstack_floating_ip_allocate.rb +16 -2
  7. data/lib/chef/knife/openstack_floating_ip_associate.rb +17 -3
  8. data/lib/chef/knife/openstack_floating_ip_disassociate.rb +17 -3
  9. data/lib/chef/knife/openstack_floating_ip_list.rb +16 -2
  10. data/lib/chef/knife/openstack_floating_ip_release.rb +14 -2
  11. data/lib/chef/knife/openstack_group_list.rb +18 -1
  12. data/lib/chef/knife/openstack_helpers.rb +17 -1
  13. data/lib/chef/knife/openstack_image_list.rb +16 -2
  14. data/lib/chef/knife/openstack_network_list.rb +16 -2
  15. data/lib/chef/knife/openstack_server_create.rb +3 -4
  16. data/lib/chef/knife/openstack_server_delete.rb +14 -2
  17. data/lib/chef/knife/openstack_server_list.rb +3 -4
  18. data/lib/chef/knife/openstack_server_show.rb +1 -2
  19. data/lib/chef/knife/openstack_volume_list.rb +4 -4
  20. data/lib/knife-openstack/version.rb +2 -2
  21. metadata +8 -207
  22. data/.github/ISSUE_TEMPLATE.md +0 -21
  23. data/.gitignore +0 -32
  24. data/.travis.yml +0 -18
  25. data/CHANGELOG.md +0 -339
  26. data/CONTRIBUTING.MD +0 -164
  27. data/Gemfile +0 -5
  28. data/README.md +0 -179
  29. data/Rakefile +0 -29
  30. data/knife-openstack.gemspec +0 -41
  31. data/spec/functional/flavor_list_func_spec.rb +0 -47
  32. data/spec/functional/floating_ip_list_func_spec.rb +0 -48
  33. data/spec/functional/group_list_func_spec.rb +0 -65
  34. data/spec/functional/image_list_func_spec.rb +0 -53
  35. data/spec/functional/network_list_func_spec.rb +0 -46
  36. data/spec/functional/server_create_func_spec.rb +0 -118
  37. data/spec/functional/server_delete_func_spec.rb +0 -84
  38. data/spec/functional/server_list_func_spec.rb +0 -98
  39. data/spec/functional/server_show_func_spec.rb +0 -46
  40. data/spec/functional/volume_list_func_spec.rb +0 -46
  41. data/spec/integration/cleanup.rb +0 -89
  42. data/spec/integration/config/environment.yml.sample +0 -13
  43. data/spec/integration/openstack_spec.rb +0 -649
  44. data/spec/spec_context.rb +0 -56
  45. data/spec/spec_helper.rb +0 -128
  46. data/spec/unit/openstack_flavor_list_spec.rb +0 -30
  47. data/spec/unit/openstack_floating_ip_allocate_spec.rb +0 -56
  48. data/spec/unit/openstack_floating_ip_associate_spec.rb +0 -40
  49. data/spec/unit/openstack_floating_ip_disassociate_spec.rb +0 -39
  50. data/spec/unit/openstack_floating_ip_list_spec.rb +0 -27
  51. data/spec/unit/openstack_floating_ip_release_spec.rb +0 -49
  52. data/spec/unit/openstack_group_list_spec.rb +0 -44
  53. data/spec/unit/openstack_image_list_spec.rb +0 -32
  54. data/spec/unit/openstack_network_list_spec.rb +0 -39
  55. data/spec/unit/openstack_server_create_spec.rb +0 -449
  56. data/spec/unit/openstack_server_delete_spec.rb +0 -43
  57. data/spec/unit/openstack_server_list_spec.rb +0 -32
  58. data/spec/unit/openstack_server_show_spec.rb +0 -42
  59. data/spec/unit/openstack_service_spec.rb +0 -128
  60. data/spec/unit/openstack_volume_list_spec.rb +0 -30
@@ -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
@@ -1,18 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- dist: trusty
4
- sudo: false
5
- rvm:
6
- - 2.2.7
7
- - 2.3.4
8
- - 2.4.1
9
- - ruby-head
10
-
11
- matrix:
12
- allow_failures:
13
- - rvm: ruby-head
14
-
15
- branches:
16
- only:
17
- - master
18
- script: bundle exec rake
@@ -1,339 +0,0 @@
1
- # Change Log
2
-
3
- ## [2.1.0](https://github.com/chef/knife-openstack/tree/2.1.0) (2017-08-21)
4
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v2.0.1...2.1.0)
5
-
6
- **Merged pull requests:**
7
-
8
- - Test on the latest Ruby releases in Travis [\#202](https://github.com/chef/knife-openstack/pull/202) ([tas50](https://github.com/tas50))
9
-
10
- ## [v2.0.1](https://github.com/chef/knife-openstack/tree/v2.0.1) (2017-03-21)
11
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v2.0.0...v2.0.1)
12
-
13
- **Merged pull requests:**
14
-
15
- - v2.0.1 [\#200](https://github.com/chef/knife-openstack/pull/200) ([jjasghar](https://github.com/jjasghar))
16
- - fix per Andrius47 [\#199](https://github.com/chef/knife-openstack/pull/199) ([jjasghar](https://github.com/jjasghar))
17
-
18
- ## [v2.0.0](https://github.com/chef/knife-openstack/tree/v2.0.0) (2017-01-04)
19
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2...v2.0.0)
20
-
21
- **Implemented enhancements:**
22
-
23
- - Require Chef 12 and resolve all Chefstyle warnings [\#191](https://github.com/chef/knife-openstack/pull/191) ([tas50](https://github.com/tas50))
24
- - Add contributing section to the readme [\#190](https://github.com/chef/knife-openstack/pull/190) ([tas50](https://github.com/tas50))
25
- - Add license to the gemspec & update Travis config [\#184](https://github.com/chef/knife-openstack/pull/184) ([tas50](https://github.com/tas50))
26
- - Improve the readme [\#182](https://github.com/chef/knife-openstack/pull/182) ([jjasghar](https://github.com/jjasghar))
27
-
28
- **Closed issues:**
29
-
30
- - Does Knife OpenStack Plugin support nova-networking? [\#187](https://github.com/chef/knife-openstack/issues/187)
31
- - knife openstack server create fails on Windows2012r2 on WinRM connection [\#186](https://github.com/chef/knife-openstack/issues/186)
32
- - chef/knife/openstack\_helpers \(LoadError\) [\#185](https://github.com/chef/knife-openstack/issues/185)
33
- - Request for knife openstack stack ... [\#183](https://github.com/chef/knife-openstack/issues/183)
34
- - Update README [\#180](https://github.com/chef/knife-openstack/issues/180)
35
- - 1.3.2.pre Release [\#177](https://github.com/chef/knife-openstack/issues/177)
36
-
37
- **Merged pull requests:**
38
-
39
- - Release 2.0.0 [\#195](https://github.com/chef/knife-openstack/pull/195) ([tas50](https://github.com/tas50))
40
- - Test on Ruby 2.2 and 2.3 only [\#189](https://github.com/chef/knife-openstack/pull/189) ([jjasghar](https://github.com/jjasghar))
41
-
42
- ## [v1.3.2](https://github.com/chef/knife-openstack/tree/v1.3.2) (2015-10-07)
43
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.rc1...v1.3.2)
44
-
45
- ## [v1.3.2.rc1](https://github.com/chef/knife-openstack/tree/v1.3.2.rc1) (2015-10-01)
46
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.pre.1...v1.3.2.rc1)
47
-
48
- **Implemented enhancements:**
49
-
50
- - Support all Fog OpenStack options [\#179](https://github.com/chef/knife-openstack/pull/179) ([BobbyRyterski](https://github.com/BobbyRyterski))
51
-
52
- **Fixed bugs:**
53
-
54
- - knife-openstack server list [\#175](https://github.com/chef/knife-openstack/issues/175)
55
-
56
- ## [v1.3.2.pre.1](https://github.com/chef/knife-openstack/tree/v1.3.2.pre.1) (2015-09-15)
57
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.2.pre...v1.3.2.pre.1)
58
-
59
- **Fixed bugs:**
60
-
61
- - Fixed ip addresses not visible issue [\#178](https://github.com/chef/knife-openstack/pull/178) ([Vasu1105](https://github.com/Vasu1105))
62
-
63
- **Closed issues:**
64
-
65
- - uninitialized constant Chef::Knife::Cloud::Command \(NameError\) [\#172](https://github.com/chef/knife-openstack/issues/172)
66
-
67
- **Merged pull requests:**
68
-
69
- - 1.3.2.pre release. [\#176](https://github.com/chef/knife-openstack/pull/176) ([jjasghar](https://github.com/jjasghar))
70
-
71
- ## [v1.3.2.pre](https://github.com/chef/knife-openstack/tree/v1.3.2.pre) (2015-09-04)
72
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.1...v1.3.2.pre)
73
-
74
- **Fixed bugs:**
75
-
76
- - Fix cloud command class loading [\#174](https://github.com/chef/knife-openstack/pull/174) ([Cluster444](https://github.com/Cluster444))
77
-
78
- ## [v1.3.1](https://github.com/chef/knife-openstack/tree/v1.3.1) (2015-07-18)
79
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.0...v1.3.1)
80
-
81
- ## [v1.3.0](https://github.com/chef/knife-openstack/tree/v1.3.0) (2015-07-18)
82
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.3.0.rc.0...v1.3.0)
83
-
84
- **Implemented enhancements:**
85
-
86
- - Set the openstack ohai hint when creating a server [\#171](https://github.com/chef/knife-openstack/pull/171) ([mtougeron](https://github.com/mtougeron))
87
- - Add floating ip commands [\#170](https://github.com/chef/knife-openstack/pull/170) ([Vasu1105](https://github.com/Vasu1105))
88
-
89
- **Closed issues:**
90
-
91
- - knife openstack floatip \<args\> ? [\#138](https://github.com/chef/knife-openstack/issues/138)
92
-
93
- ## [v1.3.0.rc.0](https://github.com/chef/knife-openstack/tree/v1.3.0.rc.0) (2015-06-25)
94
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0...v1.3.0.rc.0)
95
-
96
- **Implemented enhancements:**
97
-
98
- - Support --format option [\#166](https://github.com/chef/knife-openstack/pull/166) ([NimishaS](https://github.com/NimishaS))
99
-
100
- **Closed issues:**
101
-
102
- - Not finding Private IP During Bootstrap [\#146](https://github.com/chef/knife-openstack/issues/146)
103
-
104
- ## [v1.2.0](https://github.com/chef/knife-openstack/tree/v1.2.0) (2015-06-18)
105
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0.rc2...v1.2.0)
106
-
107
- **Closed issues:**
108
-
109
- - both -F json ad --format json does not work [\#160](https://github.com/chef/knife-openstack/issues/160)
110
-
111
- **Merged pull requests:**
112
-
113
- - Release 1.2.0 [\#165](https://github.com/chef/knife-openstack/pull/165) ([jjasghar](https://github.com/jjasghar))
114
-
115
- ## [v1.2.0.rc2](https://github.com/chef/knife-openstack/tree/v1.2.0.rc2) (2015-06-10)
116
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.2.0.rc1...v1.2.0.rc2)
117
-
118
- **Closed issues:**
119
-
120
- - Should support bootstrap-template option [\#161](https://github.com/chef/knife-openstack/issues/161)
121
-
122
- ## [v1.2.0.rc1](https://github.com/chef/knife-openstack/tree/v1.2.0.rc1) (2015-06-04)
123
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v1.1.0...v1.2.0.rc1)
124
-
125
- **Implemented enhancements:**
126
-
127
- - Allow users to specify alternate private networks. [\#163](https://github.com/chef/knife-openstack/pull/163) ([elbandito](https://github.com/elbandito))
128
- - Add volume capabilities to allow listing and attaching volumes [\#142](https://github.com/chef/knife-openstack/pull/142) ([karcaw](https://github.com/karcaw))
129
-
130
- **Closed issues:**
131
-
132
- - Serious Bug with server show instance-id [\#164](https://github.com/chef/knife-openstack/issues/164)
133
- - openstack server create not working with floating ips [\#162](https://github.com/chef/knife-openstack/issues/162)
134
- - handle\_excon\_exception: undefined method [\#153](https://github.com/chef/knife-openstack/issues/153)
135
- - support multi region for OpenStack [\#152](https://github.com/chef/knife-openstack/issues/152)
136
- - knife openstack fails to bootstrap server [\#151](https://github.com/chef/knife-openstack/issues/151)
137
- - Dont see ip addresses with knife openstack server list [\#150](https://github.com/chef/knife-openstack/issues/150)
138
- - Get ERROR: You have either requested an invalid floating IP address or none are available. [\#149](https://github.com/chef/knife-openstack/issues/149)
139
- - Unable to create server w/ v1.0 [\#147](https://github.com/chef/knife-openstack/issues/147)
140
- - no support for multi-region - major blocker [\#139](https://github.com/chef/knife-openstack/issues/139)
141
- - knife.rb proxy settings not honored [\#137](https://github.com/chef/knife-openstack/issues/137)
142
- - Add support for authentication with domain id and name? [\#134](https://github.com/chef/knife-openstack/issues/134)
143
-
144
- ## [v1.1.0](https://github.com/chef/knife-openstack/tree/v1.1.0) (2015-03-06)
145
- [Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0...v1.1.0)
146
-
147
- **Implemented enhancements:**
148
-
149
- - Add ability to specify host when using the -Z flag to specify availability-zone [\#158](https://github.com/chef/knife-openstack/issues/158)
150
- - Support multiple regions [\#148](https://github.com/chef/knife-openstack/pull/148) ([jedipunkz](https://github.com/jedipunkz))
151
-
152
- **Fixed bugs:**
153
-
154
- - Fix failing rspec tests [\#155](https://github.com/chef/knife-openstack/pull/155) ([PierreRambaud](https://github.com/PierreRambaud))
155
- - Fix travis badge in the readme [\#154](https://github.com/chef/knife-openstack/pull/154) ([PierreRambaud](https://github.com/PierreRambaud))
156
-
157
- **Merged pull requests:**
158
-
159
- - 1.1.0 release branch [\#159](https://github.com/chef/knife-openstack/pull/159) ([jjasghar](https://github.com/jjasghar))
160
- - Update email addresses and copyright date [\#157](https://github.com/chef/knife-openstack/pull/157) ([nathenharvey](https://github.com/nathenharvey))
161
- - remove deprecated 1.9 support and add 2.2.0 [\#156](https://github.com/chef/knife-openstack/pull/156) ([cmluciano](https://github.com/cmluciano))
162
-
163
- ## [1.0.0](https://github.com/chef/knife-openstack/tree/1.0.0) (2014-10-07)
164
- [Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0.rc2...1.0.0)
165
-
166
- ## [1.0.0.rc2](https://github.com/chef/knife-openstack/tree/1.0.0.rc2) (2014-09-29)
167
- [Full Changelog](https://github.com/chef/knife-openstack/compare/1.0.0.rc1...1.0.0.rc2)
168
-
169
- **Implemented enhancements:**
170
-
171
- - Improve port id detection [\#144](https://github.com/chef/knife-openstack/pull/144) ([karcaw](https://github.com/karcaw))
172
-
173
- **Closed issues:**
174
-
175
- - 1.0.0.rc1 does not grab port id properly.. [\#143](https://github.com/chef/knife-openstack/issues/143)
176
-
177
- **Merged pull requests:**
178
-
179
- - Updated Gemfile to the released knife-cloud gem [\#145](https://github.com/chef/knife-openstack/pull/145) ([jjasghar](https://github.com/jjasghar))
180
-
181
- ## [1.0.0.rc1](https://github.com/chef/knife-openstack/tree/1.0.0.rc1) (2014-09-24)
182
- [Full Changelog](https://github.com/chef/knife-openstack/compare/0.10.0...1.0.0.rc1)
183
-
184
- **Implemented enhancements:**
185
-
186
- - Add Fog dependency to the Gemspec [\#136](https://github.com/chef/knife-openstack/pull/136) ([siddheshwar-more](https://github.com/siddheshwar-more))
187
- - Implement changes for post connection validation [\#127](https://github.com/chef/knife-openstack/pull/127) ([siddheshwar-more](https://github.com/siddheshwar-more))
188
- - 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))
189
- - 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))
190
- - Added network id option to server create command [\#114](https://github.com/chef/knife-openstack/pull/114) ([prabhu-das](https://github.com/prabhu-das))
191
- - 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))
192
- - Sorting list output by name field [\#112](https://github.com/chef/knife-openstack/pull/112) ([prabhu-das](https://github.com/prabhu-das))
193
- - 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))
194
- - Add 'knife openstack network list' [\#110](https://github.com/chef/knife-openstack/pull/110) ([prabhu-das](https://github.com/prabhu-das))
195
- - KNIFE-368 Ability to specify metadata during OpenStack server create [\#109](https://github.com/chef/knife-openstack/pull/109) ([ameyavarade](https://github.com/ameyavarade))
196
- - KNIFE-428 Basic availability zones support [\#108](https://github.com/chef/knife-openstack/pull/108) ([siddheshwar-more](https://github.com/siddheshwar-more))
197
-
198
- **Fixed bugs:**
199
-
200
- - Fixes Associate IPs for neutron [\#141](https://github.com/chef/knife-openstack/pull/141) ([jjasghar](https://github.com/jjasghar))
201
- - Fix bug with --no-network [\#125](https://github.com/chef/knife-openstack/pull/125) ([prabhu-das](https://github.com/prabhu-das))
202
- - 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))
203
- - 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))
204
- - README: Clarify misleading knife.rb snippet [\#104](https://github.com/chef/knife-openstack/pull/104) ([srenatus](https://github.com/srenatus))
205
-
206
- **Merged pull requests:**
207
-
208
- - \[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))
209
- - \[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))
210
- - \[knife-openstack\] Fix rspec deprecation warnings [\#124](https://github.com/chef/knife-openstack/pull/124) ([siddheshwar-more](https://github.com/siddheshwar-more))
211
- - \[knife-cloud\] Refactor rspec tests [\#122](https://github.com/chef/knife-openstack/pull/122) ([prabhu-das](https://github.com/prabhu-das))
212
- - \[knife-cloud\] Fix rspec deprecation warnings [\#121](https://github.com/chef/knife-openstack/pull/121) ([ameyavarade](https://github.com/ameyavarade))
213
- - \[knife-cloud\] Updated Integration tests [\#119](https://github.com/chef/knife-openstack/pull/119) ([siddheshwar-more](https://github.com/siddheshwar-more))
214
- - \[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))
215
- - \[knife-cloud\] Readme cleanup and Chef rebranding [\#116](https://github.com/chef/knife-openstack/pull/116) ([siddheshwar-more](https://github.com/siddheshwar-more))
216
- - 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))
217
-
218
- ## [0.10.0](https://github.com/chef/knife-openstack/tree/0.10.0) (2014-05-09)
219
- [Full Changelog](https://github.com/chef/knife-openstack/compare/0.9.1...0.10.0)
220
-
221
- **Implemented enhancements:**
222
-
223
- - KNIFE-478: Add ability to bootstrap with SSH passwords [\#101](https://github.com/chef/knife-openstack/pull/101) ([jmccann](https://github.com/jmccann))
224
- - Remove activesupport gem dependency and fix broken tests [\#100](https://github.com/chef/knife-openstack/pull/100) ([prabhu-das](https://github.com/prabhu-das))
225
- - Add --no-network flag [\#97](https://github.com/chef/knife-openstack/pull/97) ([prabhu-das](https://github.com/prabhu-das))
226
- - 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))
227
- - OC-11564 Update Openstack: Add bootstrap\_network option support [\#93](https://github.com/chef/knife-openstack/pull/93) ([ameyavarade](https://github.com/ameyavarade))
228
- - 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))
229
- - \[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))
230
-
231
- **Merged pull requests:**
232
-
233
- - 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))
234
- - Unit test for custom\_arguments passed. [\#77](https://github.com/chef/knife-openstack/pull/77) ([prabhu-das](https://github.com/prabhu-das))
235
- - 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))
236
-
237
- ## [0.9.1](https://github.com/chef/knife-openstack/tree/0.9.1) (2014-03-12)
238
- [Full Changelog](https://github.com/chef/knife-openstack/compare/0.9.0...0.9.1)
239
-
240
- ## [0.9.0](https://github.com/chef/knife-openstack/tree/0.9.0) (2014-03-07)
241
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.8.1...0.9.0)
242
-
243
- **Implemented enhancements:**
244
-
245
- - KNIFE-395: Add support for setting service endpoint type [\#87](https://github.com/chef/knife-openstack/pull/87) ([adamedx](https://github.com/adamedx))
246
- - OC-11204 - Exception handling and abstraction [\#84](https://github.com/chef/knife-openstack/pull/84) ([kaustubh-d](https://github.com/kaustubh-d))
247
- - \[KNIFE-435\] Added parameter --user-data for cloud-init payload [\#82](https://github.com/chef/knife-openstack/pull/82) ([thielena](https://github.com/thielena))
248
- - 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))
249
- - OC-10520 Knife-cloud should add data summary methods [\#73](https://github.com/chef/knife-openstack/pull/73) ([ameyavarade](https://github.com/ameyavarade))
250
- - \[KNIFE-395\] Add support for setting OpenStack endpoint type [\#72](https://github.com/chef/knife-openstack/pull/72) ([DavidWittman](https://github.com/DavidWittman))
251
- - KNIFE-382 :addssupport for --json-attributes to knife-openstack [\#71](https://github.com/chef/knife-openstack/pull/71) ([adamedx](https://github.com/adamedx))
252
- - 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))
253
- - 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))
254
- - \[OC-9613\] \[OC-9450\] \[OC-9533\] Sprint88-merged [\#61](https://github.com/chef/knife-openstack/pull/61) ([muktaa](https://github.com/muktaa))
255
- - \[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))
256
- - 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))
257
- - 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))
258
- - 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))
259
- - Openstack changes for Sprint86 merged into a common branch [\#44](https://github.com/chef/knife-openstack/pull/44) ([muktaa](https://github.com/muktaa))
260
- - \[KNIFE-382\] Add support for --json-attributes [\#43](https://github.com/chef/knife-openstack/pull/43) ([johnnydtan](https://github.com/johnnydtan))
261
- - OC-8572: Knife cloud openstack create with bootstrap Windows [\#40](https://github.com/chef/knife-openstack/pull/40) ([adamedx](https://github.com/adamedx))
262
- - OC-8822: Knife cloud openstack server list command [\#37](https://github.com/chef/knife-openstack/pull/37) ([adamedx](https://github.com/adamedx))
263
- - Resource Listing changes \(OC 8822, 8824, 8825, 8826\) [\#32](https://github.com/chef/knife-openstack/pull/32) ([muktaa](https://github.com/muktaa))
264
- - Refactored knife-openstack code [\#31](https://github.com/chef/knife-openstack/pull/31) ([muktaa](https://github.com/muktaa))
265
-
266
- **Fixed bugs:**
267
-
268
- - 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))
269
- - 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))
270
-
271
- **Merged pull requests:**
272
-
273
- - 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))
274
- - 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))
275
- - \[OC-9596\] openstack refactor integration tests [\#58](https://github.com/chef/knife-openstack/pull/58) ([muktaa](https://github.com/muktaa))
276
- - Sprint 86: Merge Gem dependencies, Travis support [\#46](https://github.com/chef/knife-openstack/pull/46) ([adamedx](https://github.com/adamedx))
277
- - Fixing merge issues [\#42](https://github.com/chef/knife-openstack/pull/42) ([muktaa](https://github.com/muktaa))
278
- - OC-9112 update gem dependency [\#41](https://github.com/chef/knife-openstack/pull/41) ([muktaa](https://github.com/muktaa))
279
- - 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))
280
- - 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))
281
-
282
- ## [v0.8.1](https://github.com/chef/knife-openstack/tree/v0.8.1) (2013-06-14)
283
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.8.0...v0.8.1)
284
-
285
- **Implemented enhancements:**
286
-
287
- - KNIFE-296 and KNIFE-304 fixes [\#28](https://github.com/chef/knife-openstack/pull/28) ([mattray](https://github.com/mattray))
288
-
289
- ## [v0.8.0](https://github.com/chef/knife-openstack/tree/v0.8.0) (2013-05-13)
290
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.7.1...v0.8.0)
291
-
292
- **Implemented enhancements:**
293
-
294
- - Windows Bootstrapping [\#25](https://github.com/chef/knife-openstack/pull/25) ([chirag-jog](https://github.com/chirag-jog))
295
-
296
- ## [v0.7.1](https://github.com/chef/knife-openstack/tree/v0.7.1) (2013-04-11)
297
- [Full Changelog](https://github.com/chef/knife-openstack/compare/0.7.0...v0.7.1)
298
-
299
- ## [0.7.0](https://github.com/chef/knife-openstack/tree/0.7.0) (2013-03-09)
300
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.6.2...0.7.0)
301
-
302
- ## [v0.6.2](https://github.com/chef/knife-openstack/tree/v0.6.2) (2012-10-14)
303
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.6.0...v0.6.2)
304
-
305
- ## [v0.6.0](https://github.com/chef/knife-openstack/tree/v0.6.0) (2012-06-27)
306
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.4...v0.6.0)
307
-
308
- **Implemented enhancements:**
309
-
310
- - 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))
311
-
312
- **Closed issues:**
313
-
314
- - Fog error on server create [\#5](https://github.com/chef/knife-openstack/issues/5)
315
-
316
- ## [v0.5.4](https://github.com/chef/knife-openstack/tree/v0.5.4) (2011-05-03)
317
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.3...v0.5.4)
318
-
319
- **Fixed bugs:**
320
-
321
- - CHEF-2194 Work around nil values returned from openstack [\#3](https://github.com/chef/knife-openstack/pull/3) ([drbrain](https://github.com/drbrain))
322
-
323
- ## [v0.5.3](https://github.com/chef/knife-openstack/tree/v0.5.3) (2011-04-06)
324
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.2...v0.5.3)
325
-
326
- ## [v0.5.2](https://github.com/chef/knife-openstack/tree/v0.5.2) (2011-04-06)
327
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.1...v0.5.2)
328
-
329
- **Fixed bugs:**
330
-
331
- - Fixes CHEF-2191 [\#1](https://github.com/chef/knife-openstack/pull/1) ([drbrain](https://github.com/drbrain))
332
-
333
- ## [v0.5.1](https://github.com/chef/knife-openstack/tree/v0.5.1) (2011-04-05)
334
- [Full Changelog](https://github.com/chef/knife-openstack/compare/v0.5.0...v0.5.1)
335
-
336
- ## [v0.5.0](https://github.com/chef/knife-openstack/tree/v0.5.0) (2011-03-30)
337
-
338
-
339
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -1,164 +0,0 @@
1
- # Contributing to Chef's knife-openstack
2
-
3
- We're glad you want to contribute to Chef's knife-openstack! The first step is the desire to improve the project.
4
-
5
- ## Getting in Contact with Us
6
-
7
- If you're interested in contributing to Chef's knife-openstack or just have a question about one of one of them we'd love to chat. You can find us in #general on the [Chef Community Slack](https://community-slack.chef.io/).
8
-
9
- ## Submitting Issues
10
-
11
- Not every contribution comes in the form of code. Submitting, confirming, and triaging issues is an important task for any project. At Chef we use GitHub to track all project issues.
12
-
13
- ## Contribution Process
14
-
15
- We have a 3 step process for contributions:
16
-
17
- 1. Commit changes to a git branch, making sure to sign-off those changes for the [Developer Certificate of Origin](#developer-certification-of-origin-dco).
18
- 2. Create a GitHub Pull Request for your change, following the instructions in the pull request template.
19
- 3. Perform a [Code Review](#code-review-process) with the cookbook maintainers on the pull request.
20
-
21
- ### Code Review Process
22
-
23
- Code review takes place in GitHub pull requests. See [this article](https://help.github.com/articles/about-pull-requests/) if you're not familiar with GitHub Pull Requests.
24
-
25
- Once you open a pull request, cookbook maintainers will review your code using the built-in code review process in Github PRs. The process at this point is as follows:
26
-
27
- 1. A maintainer will review your code and merge it if no changes are necessary. Your change will be merged into the cookbooks's `master` branch and will be noted in the cookbook's `CHANGELOG.md` at the time of release.
28
- 2. If a maintainer has feedback or questions on your changes they they will set `request changes` in the review and provide an explanation.
29
-
30
- ### Developer Certification of Origin (DCO)
31
-
32
- Licensing is very important to open source projects. It helps ensure the software continues to be available under the terms that the author desired.
33
-
34
- Chef uses [the Apache 2.0 license](https://github.com/chef/chef/blob/master/LICENSE) to strike a balance between open contribution and allowing you to use the software however you would like to.
35
-
36
- The license tells you what rights you have that are provided by the copyright holder. It is important that the contributor fully understands what rights they are licensing and agrees to them. Sometimes the copyright holder isn't the contributor, such as when the contributor is doing work on behalf of a company.
37
-
38
- To make a good faith effort to ensure these criteria are met, Chef requires the Developer Certificate of Origin (DCO) process to be followed.
39
-
40
- The DCO is an attestation attached to every contribution made by every developer. In the commit message of the contribution, the developer simply adds a Signed-off-by statement and thereby agrees to the DCO, which you can find below or at <http://developercertificate.org/>.
41
-
42
- ```
43
- Developer's Certificate of Origin 1.1
44
-
45
- By making a contribution to this project, I certify that:
46
-
47
- (a) The contribution was created in whole or in part by me and I
48
- have the right to submit it under the open source license
49
- indicated in the file; or
50
-
51
- (b) The contribution is based upon previous work that, to the
52
- best of my knowledge, is covered under an appropriate open
53
- source license and I have the right under that license to
54
- submit that work with modifications, whether created in whole
55
- or in part by me, under the same open source license (unless
56
- I am permitted to submit under a different license), as
57
- Indicated in the file; or
58
-
59
- (c) The contribution was provided directly to me by some other
60
- person who certified (a), (b) or (c) and I have not modified
61
- it.
62
-
63
- (d) I understand and agree that this project and the contribution
64
- are public and that a record of the contribution (including
65
- all personal information I submit with it, including my
66
- sign-off) is maintained indefinitely and may be redistributed
67
- consistent with this project or the open source license(s)
68
- involved.
69
- ```
70
-
71
- For more information on the change see the Chef Blog post [Introducing Developer Certificate of Origin](https://blog.chef.io/2016/09/19/introducing-developer-certificate-of-origin/)
72
-
73
- #### DCO Sign-Off Methods
74
-
75
- The DCO requires a sign-off message in the following format appear on each commit in the pull request:
76
-
77
- ```
78
- Signed-off-by: Julia Child <juliachild@chef.io>
79
- ```
80
-
81
- The DCO text can either be manually added to your commit body, or you can add either **-s** or **--signoff** to your usual git commit commands. If you forget to add the sign-off you can also amend a previous commit with the sign-off by running **git commit --amend -s**. If you've pushed your changes to GitHub already you'll need to force push your branch after this with **git push -f**.
82
-
83
- ### Chef Obvious Fix Policy
84
-
85
- Small contributions, such as fixing spelling errors, where the content is small enough to not be considered intellectual property, can be submitted without signing the contribution for the DCO.
86
-
87
- As a rule of thumb, changes are obvious fixes if they do not introduce any new functionality or creative thinking. Assuming the change does not affect functionality, some common obvious fix examples include the following:
88
-
89
- - Spelling / grammar fixes
90
- - Typo correction, white space and formatting changes
91
- - Comment clean up
92
- - Bug fixes that change default return values or error codes stored in constants
93
- - Adding logging messages or debugging output
94
- - Changes to 'metadata' files like Gemfile, .gitignore, build scripts, etc.
95
- - Moving source files from one directory or package to another
96
-
97
- **Whenever you invoke the "obvious fix" rule, please say so in your commit message:**
98
-
99
- ```
100
- ------------------------------------------------------------------------
101
- commit 370adb3f82d55d912b0cf9c1d1e99b132a8ed3b5
102
- Author: Julia Child <juliachild@chef.io>
103
- Date: Wed Sep 18 11:44:40 2015 -0700
104
-
105
- Fix typo in the README.
106
-
107
- Obvious fix.
108
-
109
- ------------------------------------------------------------------------
110
- ```
111
-
112
- ## Using git
113
-
114
- For collaboration purposes, it is best if you create a GitHub account and fork the repository to your own account. Once you do this you will be able to push your changes to your GitHub repository for others to see and use.
115
-
116
- ### Branches and Commits
117
-
118
- You should submit your patch as a git branch named after the Github issue, such as GH-22\. This is called a _topic branch_ and allows users to associate a branch of code with the ticket.
119
-
120
- It is a best practice to have your commit message have a _summary line_ that includes the ticket number, followed by an empty line and then a brief description of the commit. This also helps other contributors understand the purpose of changes to the code.
121
-
122
- ```text
123
- [GH-22] - platform_family and style
124
-
125
- * use platform_family for platform checking
126
- * update notifies syntax to "resource_type[resource_name]" instead of
127
- resources() lookup
128
- * GH-692 - delete config files dropped off by packages in conf.d
129
- * dropped debian 4 support because all other platforms have the same
130
- values, and it is older than "old stable" debian release
131
- ```
132
-
133
- Remember that not all users use Chef in the same way or on the same operating systems as you, so it is helpful to be clear about your use case and change so they can understand it even when it doesn't apply to them.
134
-
135
- ### More information
136
-
137
- Additional help with git is available on the [Community Contributions](https://docs.chef.io/community_contributions.html#use-git) page on the Chef Docs site.
138
-
139
- ## Contribution Do's and Don't's
140
-
141
- Please do include tests for your contribution. If you need help, ask on the [chef-dev mailing list](https://discourse.chef.io/c/dev) or the [Chef Community Slack](https://community-slack.chef.io/). Not all platforms that a cookbook supports may be supported by Test Kitchen. Please provide evidence of testing your contribution if it isn't trivial so we don't have to duplicate effort in testing.
142
-
143
- Please do indicate new platform (families) or platform versions in the commit message, and update the relevant ticket.
144
-
145
- If a contribution adds new platforms or platform versions, indicate such in the body of the commit message(s), and update the relevant issues. When writing commit messages, it is helpful for others if you indicate the issue. For example: git commit -m '[ISSUE-1041] - Updated pool resource to correctly delete.'
146
-
147
- Please do ensure that your changes do not break or modify behavior for other platforms supported by the cookbook. For example if your changes are for Debian, make sure that they do not break on CentOS.
148
-
149
- Please do **not** modify the version number in the `metadata.rb`, a maintainer will select the appropriate version based on the release cycle information above.
150
-
151
- Please do **not** update the `CHANGELOG.md` for a new version. Not all changes to a cookbook may be merged and released in the same versions. A maintainer will update the `CHANGELOG.md` when releasing a new version of the cookbook.
152
-
153
- ## Chef Community
154
-
155
- Chef is made possible by a strong community of developers and system administrators. If you have any questions or if you would like to get involved in the Chef community you can check out:
156
-
157
- - [Chef Mailing List](https://discourse.chef.io/)
158
- - [Chef Community Slack](https://community-slack.chef.io/)
159
-
160
- Also here are some additional pointers to some awesome Chef content:
161
-
162
- - [Chef Docs](https://docs.chef.io/)
163
- - [Learn Chef](https://learn.chef.io/)
164
- - [Chef Website](https://www.chef.io/)