Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 4.3 KB

CONTRIBUTING_CODE.md

File metadata and controls

67 lines (49 loc) · 4.3 KB

Contributing to the Calico Codebase

Thanks for considering contributing to Calico! This document outlines the canonical procedure for contributing new features and bugfixes to Calico. Following these steps will help ensure that your contribution gets merged quickly and efficiently.

Overview

Is this a new feature?

If you'd like to add a new feature to Calico, please first open an issue describing the desired functionality. A Calico maintainer will work with you to come up with the correct design for the new feature. Once you've agreed on a design, you can then start contributing code to the relevant Calico repositories using the development process described below.

Remember, agreeing on a design in advance will greatly increase the chance that your PR will be accepted, and minimize the amount of time required for both you and your reviewer!

Is this a simple bug fix?

Simple bug fixes can just be raised as a pull request. Make sure you describe the bug in the pull request description, and please try to reproduce the bug in a unit test. This will help ensure the bug stays fixed!

Development process

Once you've agreed on a design for your bugfix or new feature, development against the Calico codebase should be done using the following steps:

  1. Create a personal fork of the repository to which you'd like to contribute.
  2. Pull the latest code from the master branch and create a feature branch off of this in your fork.
  3. Implement your feature. Commits are cheap in Git; try to split up your code into many. It makes reviewing easier as well as for saner merging.
  4. Make sure that existing tests are passing, and that you've written new tests for any new functionality. Each repository has its own suite of tests. See the README for each repository for more information on building and running that repository's tests.
  5. Push your feature branch to your fork on GitHub.
  6. Create a pull request using GitHub, from your fork and branch to projectcalico master.
    1. If you haven't already done so, you will need to agree to our contributor agreement. See below.
    2. Opening a pull request will automatically run your changes through our CI. Make sure all pre-submit tests pass so that a maintainer can merge your contribution.
  7. Await review from a maintainer.
  8. When you receive feedback:
    1. Address code review issues on your feature branch.
    2. Push the changes to your fork's feature branch on GitHub in a new commit - do not squash! This automatically updates the pull request.
    3. If necessary, make a top-level comment along the lines of “Please re-review”, notifying your reviewer, and repeat the above.
    4. Once all the requested changes have been made, your reviewer may ask you to squash your commits. If so, combine the commits into one with a single descriptive message.
    5. Once your PR has been approved and the commits have been squashed, your reviewer will merge the PR. If you have the necessary permissions, you may merge the PR yourself.

Patching an older release

If your contribution is intended for an older release, the change will need to be cherry-picked into the appropriate release branch after it has been reviewed and merged into master. Once your reviewer agrees the patch is valid for cherry-picking, perform the following steps to create the cherry-pick PR.

  1. Check out the release branch corresponding to your target release, for example: git fetch upstream; git checkout release-v2.5.
  2. Create the cherry-pick branch, for example: git checkout -b cherry-pick-pr12345
  3. Cherry-pick the commit to your new branch: git cherry-pick [ORIGINAL_COMMIT_HASH]
  4. Push the branch to your fork and create a PR against the appropriate release-vX.Y branch.
  5. Notify your original reviewer on the PR.

Release notes

Some PRs warrant release notes. These are typically important bug fixes or new features that users may be interested in. If unsure if your PR warrants a release note in the description, ask your reviewer.

Contributor Agreements

We need you to sign our Contributor License Agreement before we can accept your contribution. You will be prompted to do this as part of the PR process on GitHub.