Skip to content

Commit f6f29f0

Browse files
committed
Contributing Guidelines - Initial
1 parent 2b88946 commit f6f29f0

File tree

1 file changed

+90
-0
lines changed

1 file changed

+90
-0
lines changed

CONTRIBUTING.adoc

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
= Contributing to Kubernetes the AWSome Way
2+
Thank you for your interest in contributing to Kubernetes the AWSome Way! We work hard to provide a high quality and useful workshop for our customers, and we appreciate your interest in helping us and the rest of our community of users. We welcome bug reports, enhancements, and contributions.
3+
4+
__Jump To:__
5+
6+
* link:#bug-reports[Bug Reports]
7+
* link:#enhancements[Enhancements]
8+
* link:#contributions[Contributions]
9+
* link:#getting-in-contact[Getting in Contact]
10+
11+
== Bug Reports
12+
Bug reports are accepted through the link:https://github.com/aws-samples/aws-workshop-for-kubernetes/issues[Issues] page.
13+
14+
The following labels are used to track bug related issues: link:https://github.com/aws-samples/aws-workshop-for-kubernetes/labels/Bug[Bug].
15+
16+
=== Before Submitting a Bug Report
17+
Before submitting a bug report, please do the following:
18+
19+
1. Do a search through the existing issues to make sure it has not already been reported. If there's an existing one, be sure give a +1 reaction which will help us prioritize which issues to address first.
20+
21+
2. Provide as much information about your environment, software version, and relevant dependencies as possible. For example, let us know what version of kubernetes you are using, which launch type for the kubernetes cluster (e.g. EKS or kops), and the environment your code is running in. (e.g Cloud9).
22+
23+
If, after doing the above steps, you determine that you need to submit a bug report, refer to the next section.
24+
25+
=== Submitting a Bug Report
26+
So that we are able to assist you as effectively as possible with the issue, please ensure that your bug report has the following:
27+
28+
* A short, descriptive title. Ideally, other community members should be able to get a good idea of the issue just from reading the title.
29+
* A detailed description of the problem you're experiencing. This should include:
30+
* Expected behavior of the workshop and the actual behavior exhibited.
31+
* Any details of your application environment that may be relevant.
32+
* Commands and output used to reproduce the issue.
33+
* [Markdown][markdown] formatting as appropriate to make the report easier to read; for example use code blocks when pasting a code snippet and exception stacktraces.
34+
35+
=== Tracking your Bug Report
36+
You will automatically be notified of any changes to a bug report. Either a maintainer or a community member may comment on the bug report requiring further input. We encourage all contributors to stay active on their bug reports reports. This helps the community to focus on issues with more influence and activity.
37+
38+
We understand that contributors cannot devote 100% of their time to a project, just as our maintainers cannot devote 100% of their time to the project.. We want to squash bugs as often as we can, but sometimes require comments from the submitter or community in order to proceed.
39+
40+
If a bug report has been inactive (waiting on comment from submitter or community) for 14 days, a maintainer may label the issue as stale. Once a bug report has been inactive for more than 28 days, the issue will be administratively closed. Issues can be re-opened after being administratively closed by commenting on the issue requesting to re-open and providing the necessary comment.
41+
42+
== Enhancements
43+
Like bug reports, enhancements are submitted through the link:https://github.com/aws-samples/aws-workshop-for-kubernetes/issues[Issues] page.
44+
45+
As with Bug Reports, please do a search of the open requests first before submitting a new one to avoid duplicates. If you find an existing one, give it a +1.
46+
47+
[NOTE]
48+
If this is an enhancement you intend to implement, please be sure to submit the enhancement *before* working on any code changes. This will allow members on the workshop team to have a discussion with you to ensure that it's the right design and that it makes sense to include in the workshop.
49+
50+
Enhancements are labeled with link:https://github.com/aws-samples/aws-workshop-for-kubernetes/labels/Enhancement[Enhancement].
51+
52+
=== Submitting an Enhancement
53+
Open an link:https://github.com/aws-samples/aws-workshop-for-kubernetes/issues[issue] with the following:
54+
55+
* A short, descriptive title. Ideally, other community members should be able to get a good idea of the enhancement just from reading the title.
56+
* A detailed description of the the proposed enhancement. Include justification for why it should be added to the workshop, and possibly example code to illustrate how it should work.
57+
* link:https://guides.github.com/features/mastering-markdown/[Markdown] formatting as appropriate to make the request easier to read.
58+
* If you intend to implement this enhancement, indicate that you'd like to the issue to be assigned to you.
59+
60+
== Contributions
61+
Contributions to the workshop are done through link:https://github.com/aws-samples/aws-workshop-for-kubernetes/pulls[Pull Requests]. Please keep the following in mind when considering a contribution:
62+
63+
* The workshop is released under the link:https://github.com/aws-samples/aws-workshop-for-kubernetes/blob/master/LICENSE[Apache 2.0 License]. Any code you submit will be released under this license. If you are contributing a large/substantial enhancement, you may be asked to sign a link:https://github.com/aws/aws-cla[Contributor License Agreement (CLA)].
64+
65+
* For anything but very small or quick changes, you should always start by checking the link:https://github.com/aws-samples/aws-workshop-for-kubernetes/issues[Issues] page to see if the work is already being done by another person.
66+
67+
[NOTE]
68+
If you're working on a bug fix, check to see if the bug has already been reported. If it has but no one is assigned to it, ask one of the maintainers to assign it to you before beginning work. If you're confident the bug hasn't been reported yet, create a new link:#bug-reports[Bug Report] then ask to be assigned to it.
69+
70+
[NOTE]
71+
If you are thinking about adding entirely new functionality, open an link:#enhancements[Enhancements] or link:https://gitter.im/aws-samples/aws-workshop-for-kubernetes[ping] the maintainers to ask for feedback first before beginning work; again this is to make sure that no one else is already working on it, and also that it makes sense to be included in the workshop.
72+
73+
=== Pull Request Readiness
74+
Before submitting your pull request, refer to the pull request readiness checklist below:
75+
76+
* [ ] Includes tests to exercise the new behavior
77+
* [ ] Code is documented, especially public and user-facing constructs
78+
* [ ] Git commit message is detailed and includes context behind the change
79+
* [ ] If the change is related to an existing Bug Report or Enhancement, the issue number is referenced
80+
81+
[NOTE]
82+
Some changes have additional requirements. Refer to the section below to see if your change will require additional work to be accepted.
83+
84+
=== Getting Your Pull Request Merged
85+
All Pull Requests must be reviewed and approved by at least two other contributors or one maintainer before it can be merged in. Additionally, maintainers will strive to not merge their own pull requests unless 72 hours has passed, though extenuating circumstances may apply. The members only have limited bandwidth to review Pull Requests so it's not unusual for a Pull Request to go unreviewed for a few days, especially if it's a large or complex one. If, after a week, your Pull Request has not had any engagement from the workshop team, feel free to link:https://gitter.im/aws-samples/aws-workshop-for-kubernetes[ping] a member to ask for a review.
86+
87+
If your branch has more than one commit when it's approved, you may also be asked to link:https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History[squash] them into a single commit before it is merged in.
88+
89+
== Getting in Contact
90+
* Come chat with us on link:https://gitter.im/aws-samples/aws-workshop-for-kubernetes[Gitter]!

0 commit comments

Comments
 (0)