diff options
| author | k8s-ci-robot <k8s-ci-robot@users.noreply.github.com> | 2018-01-16 14:06:24 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-16 14:06:24 -0800 |
| commit | bb7fd85b21307d23044fa01ffd585aa8272b8f3a (patch) | |
| tree | 0b130013dcd7927a23569ddbbf28fd5aa1e18ea2 /contributors/guide | |
| parent | 7d3580260a5151667dd4338442f5bc71015887c4 (diff) | |
| parent | 888adea41975033d541b714faa87104bce06c0ac (diff) | |
Merge pull request #1610 from guineveresaenger/cheatsheet
Cheatsheet
Diffstat (limited to 'contributors/guide')
| -rw-r--r-- | contributors/guide/README.md | 8 | ||||
| -rw-r--r-- | contributors/guide/contributor-cheatsheet.md | 42 |
2 files changed, 47 insertions, 3 deletions
diff --git a/contributors/guide/README.md b/contributors/guide/README.md index 6175a312..db2eee75 100644 --- a/contributors/guide/README.md +++ b/contributors/guide/README.md @@ -140,13 +140,15 @@ Make sure to adhere to the prompted submission guidelines while opening an issue # Contributing -(From:[here](/contributors/devel/collab.md)) - Kubernetes is open source, but many of the people working on it do so as their day job. In order to avoid forcing people to be "at work" effectively 24/7, we want to establish some semi-formal protocols around development. Hopefully these rules make things go more smoothly. If you find that this is not the case, please complain loudly. As a potential contributor, your changes and ideas are welcome at any hour of the day or night, weekdays, weekends, and holidays. Please do not ever hesitate to ask a question or send a pull request. -Our community guiding principles on how to create great code as a big group are found [here](/contributors/devel/collab.md). Beginner focused information can be found below in [Open a Pull Request](#open-a-pull-request) and [Code Review](#code-review). +Our community guiding principles on how to create great code as a big group are found [here](/contributors/devel/collab.md). + +Beginner focused information can be found below in [Open a Pull Request](#open-a-pull-request) and [Code Review](#code-review). + +For quick reference on contributor resources, we have a handy [contributor cheatsheet](./contributor-cheatsheet.md) ### Communication diff --git a/contributors/guide/contributor-cheatsheet.md b/contributors/guide/contributor-cheatsheet.md new file mode 100644 index 00000000..5ec5a3f3 --- /dev/null +++ b/contributors/guide/contributor-cheatsheet.md @@ -0,0 +1,42 @@ +# Kubernetes Cheat Sheet + +A list of common resources when contributing to Kubernetes. + +| Repo | PRs | Issues | Notes | +| ---- | --- | ------ | ----- | +| [Kubernetes](https://github.com/kubernetes/kubernetes) | [PRs](https://github.com/kubernetes/kubernetes/pulls) | [Issues](https://github.com/kubernetes/kubernetes/issues) | [Meeting Notes](http://bit.ly/kubenotes) +| [Community](https://github.com/kubernetes/community) | [PRs](https://github.com/kubernetes/community/pulls) | [Issues](https://github.com/kubernetes/community/issues) | +| [Docs](https://github.com/kubernetes/website) | [PRs](https://github.com/kubernetes/website/pulls) | [Issues](https://github.com/kubernetes/website/issues) + +## Workflow + +- [Gubernator Dashboard - k8s.reviews](https://k8s-gubernator.appspot.com/pr) +- [reviewable.kubernetes.io](https://reviewable.kubernetes.io/reviews#-) +- [Submit Queue](https://submit-queue.k8s.io) +- [Bot commands](https://git.k8s.io/test-infra/commands.md) +- [Release Buckets](http://gcsweb.k8s.io/gcs/kubernetes-release/) +- Developer Guide + - [Cherry Picking Guide](/contributors/devel/cherry-picks.md) - [Queue](http://cherrypick.k8s.io/#/queue) + +## SIGs and Working Groups + +- [Master SIG list](/sig-list.md#master-sig-list) + +## Community + +- [Calendar](https://calendar.google.com/calendar/embed?src=cgnt364vd8s86hr2phapfjc6uk%40group.calendar.google.com) +- [kubernetes-dev](https://groups.google.com/forum/#!forum/kubernetes-dev) +- [kubernetes-users](https://groups.google.com/forum/#!forum/kubernetes-users) +- [Slack channels](http://slack.k8s.io/) +- [StackOverflow](https://stackoverflow.com/questions/tagged/kubernetes) +- [YouTube Channel](https://www.youtube.com/c/KubernetesCommunity/) + +## Tests + +- [Current Test Status](https://prow.k8s.io/) +- [Aggregated Failures](https://storage.googleapis.com/k8s-gubernator/triage/index.html) +- [Test Grid](https://k8s-testgrid.appspot.com/) + +## Other + +- [Developer Statistics](https://devstats.k8s.io) |
