knife-ec2 0.18.2 → 0.19.10

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,245 +0,0 @@
1
- # Contributing to knife-ec2
2
-
3
- We're glad you want to contribute to knife-ec2! The first
4
- step is the desire to improve the project.
5
-
6
- ## Contribution Process
7
-
8
- We have a 3 step process for contributions:
9
-
10
- 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).
11
- 2. Create a Github Pull Request for your change, following the instructions in the pull request template.
12
- 3. Perform a [Code Review](#code-review-process) with the project maintainers on the pull request.
13
-
14
- ### Code Review Process
15
-
16
- 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.
17
-
18
- Once you open a pull request, project maintainers will review your code and respond to your pull request with any feedback they might have. The process at this point is as follows:
19
-
20
- 1. Two thumbs-up (:+1:) are required from project maintainers. See the master maintainers document for Chef projects at <https://github.com/chef/chef/blob/master/MAINTAINERS.md>.
21
- 2. When ready, your pull request will be tagged with label `Ready For Merge`.
22
- 3. Your change will be merged into the project's `master` branch and will be noted in the project's `CHANGELOG.md` at the time of release.
23
-
24
- ### Developer Certification of Origin (DCO)
25
-
26
- Licensing is very important to open source projects. It helps ensure the software continues to be available under the terms that the author desired.
27
-
28
- 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.
29
-
30
- 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.
31
-
32
- To make a good faith effort to ensure these criteria are met, Chef requires the Developer Certificate of Origin (DCO) process to be followed.
33
-
34
- 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/>.
35
-
36
- ```
37
- Developer's Certificate of Origin 1.1
38
-
39
- By making a contribution to this project, I certify that:
40
-
41
- (a) The contribution was created in whole or in part by me and I
42
- have the right to submit it under the open source license
43
- indicated in the file; or
44
-
45
- (b) The contribution is based upon previous work that, to the
46
- best of my knowledge, is covered under an appropriate open
47
- source license and I have the right under that license to
48
- submit that work with modifications, whether created in whole
49
- or in part by me, under the same open source license (unless
50
- I am permitted to submit under a different license), as
51
- Indicated in the file; or
52
-
53
- (c) The contribution was provided directly to me by some other
54
- person who certified (a), (b) or (c) and I have not modified
55
- it.
56
-
57
- (d) I understand and agree that this project and the contribution
58
- are public and that a record of the contribution (including
59
- all personal information I submit with it, including my
60
- sign-off) is maintained indefinitely and may be redistributed
61
- consistent with this project or the open source license(s)
62
- involved.
63
- ```
64
-
65
- 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/)
66
-
67
- #### DCO Sign-Off Methods
68
-
69
- The DCO requires a sign-off message in the following format appear on each commit in the pull request:
70
-
71
- ```
72
- Signed-off-by: Julia Child <juliachild@chef.io>
73
- ```
74
-
75
- 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**.
76
-
77
- ### Chef Obvious Fix Policy
78
-
79
- 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.
80
-
81
- 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:
82
-
83
- - Spelling / grammar fixes
84
- - Typo correction, white space and formatting changes
85
- - Comment clean up
86
- - Bug fixes that change default return values or error codes stored in constants
87
- - Adding logging messages or debugging output
88
- - Changes to 'metadata' files like Gemfile, .gitignore, build scripts, etc.
89
- - Moving source files from one directory or package to another
90
-
91
- **Whenever you invoke the "obvious fix" rule, please say so in your commit message:**
92
-
93
- ```
94
- ------------------------------------------------------------------------
95
- commit 370adb3f82d55d912b0cf9c1d1e99b132a8ed3b5
96
- Author: Julia Child <juliachild@chef.io>
97
- Date: Wed Sep 18 11:44:40 2015 -0700
98
-
99
- Fix typo in the README.
100
-
101
- Obvious fix.
102
-
103
- ------------------------------------------------------------------------
104
- ```
105
-
106
- ## <a name="issues"></a>Issue Tracking
107
-
108
- Chef uses Github Issues to track issues with knife-ec2. Issues should be
109
- submitted at https://github.com/chef/knife-ec2/issues/new.
110
-
111
- In order to decrease the back and forth in issues, and to help us get to
112
- the bottom of them quickly we use the below issue template. You can copy/paste
113
- this template into the issue you are opening and edit it accordingly.
114
-
115
- <a name="issuetemplate"></a>
116
- ```
117
- ### Environment: [Details about the environment such as the Operating System, Ruby release, etc...]
118
-
119
- ### Scenario:
120
- [What you are trying to achieve and you can't?]
121
-
122
-
123
- ### Steps to Reproduce:
124
- [If you are filing an issue what are the things we need to do in order to repro your problem?]
125
-
126
-
127
- ### Expected Result:
128
- [What are you expecting to happen as the consequence of above reproduction steps?]
129
-
130
-
131
- ### Actual Result:
132
- [What actually happens after the reproduction steps?]
133
- ```
134
-
135
- ## Using git
136
-
137
- You can copy the knife-ec2 repository to your local workstation by running
138
- `git clone git://github.com/chef/knife-ec2.git`.
139
-
140
- For collaboration purposes, it is best if you create a GitHub account
141
- and fork the repository to your own account. Once you do this you will
142
- be able to push your changes to your GitHub repository for others to
143
- see and use.
144
-
145
- ### Branches and Commits
146
-
147
- You should submit your patch as a git branch named after the Github
148
- issue, such as GH-22. This is called a _topic branch_ and allows users
149
- to associate a branch of code with the ticket.
150
-
151
- It is a best practice to have your commit message have a _summary
152
- line_ that includes the ticket number, followed by an empty line and
153
- then a brief description of the commit. This also helps other
154
- contributors understand the purpose of changes to the code.
155
-
156
- ```text
157
- [GH-22] - platform_family and style
158
-
159
- * use platform_family for platform checking
160
- * update notifies syntax to "resource_type[resource_name]" instead of
161
- resources() lookup
162
- * GH-692 - delete config files dropped off by packages in conf.d
163
- * dropped debian 4 support because all other platforms have the same
164
- values, and it is older than "old stable" debian release
165
- ```
166
-
167
- Remember that not all users use Chef in the same way or on the same
168
- operating systems as you, so it is helpful to be clear about your use
169
- case and change so they can understand it even when it doesn't apply
170
- to them.
171
-
172
- ### More information
173
-
174
- Additional help with git is available on the [Community
175
- Contributions](https://docs.chef.io/community_contributions.html#use-git)
176
- page on the Chef Docs site.
177
-
178
- ## Unit Tests
179
-
180
- knife-ec2 is tested with rspec unit tests to ensure changes don't cause
181
- regressions for other use cases. All non-trivial changes must include
182
- additional unit tests.
183
-
184
- To run the rspec tests run the following commands from the root of the
185
- project:
186
-
187
- bundle install
188
- bundle exec rspec spec
189
-
190
- **All tests must pass** before your contribution can be merged. Thus it's a good idea
191
- to execute the tests without your change to be sure you understand how to run
192
- them, as well as after to validate that you've avoided regressions.
193
-
194
- ## Code Review
195
-
196
- Chef Software regularly reviews code contributions and provides suggestions
197
- for improvement in the code itself or the implementation.
198
-
199
- ## Release Cycle
200
-
201
- The versioning for Chef Software projects is X.Y.Z.
202
-
203
- * X is a major release, which may not be fully compatible with prior
204
- major releases
205
- * Y is a minor release, which adds both new features and bug fixes
206
- * Z is a patch release, which adds just bug fixes
207
-
208
- ## Working with the community
209
-
210
- These resources will help you learn more about Chef and connect to
211
- other members of the Chef community:
212
-
213
- * [Chef Community Guidelines](https://docs.chef.io/community_guidelines.html)
214
- * [Chef Mailing List](https://discourse.chef.io/c/dev)
215
- * #chef and #chef-hacking IRC channels on irc.freenode.net
216
- * [Supermarket site](https://supermarket.chef.io/)
217
- * [Chef Docs](http://docs.chef.io)
218
- * Chef Software Chef [product page](https://www.chef.io/chef/)
219
-
220
-
221
- ## Contribution Do's and Don't's
222
-
223
- Please do include tests for your contribution. If you need help, ask on the
224
- [chef-dev mailing list](https://discourse.chef.io/c/dev) or the [#chef-hacking
225
- IRC channel](https://botbot.me/freenode/chef-hacking/). Please provide
226
- evidence of testing your contribution if it isn't trivial so we don't have to
227
- duplicate effort in testing.
228
-
229
- Please do **not** modify the version number of the gem, Chef
230
- will select the appropriate version based on the release cycle
231
- information above.
232
-
233
- Please do **not** update the `CHANGELOG.md` for a new version. Not all
234
- changes may be merged and released in the same versions. Chef Software
235
- will update the `CHANGELOG.md` when releasing a new version.
236
-
237
- ## Further Resources
238
-
239
- ### Fog
240
-
241
- Knife-ec2 uses the Fog gem to interact with EC2's API. When there's a new
242
- feature of EC2 that you'd like to utilize in knife-ec2 use cases, that feature
243
- will probably be exposed by Fog. You can read about Fog
244
- at its [project page](https://github.com/fog/fog).
245
-