Skip to content

Latest commit

 

History

History
94 lines (77 loc) · 5.53 KB

CONTRIBUTING.md

File metadata and controls

94 lines (77 loc) · 5.53 KB

Contributing

Welcome

KubeFATE is developed in the open, and is constantly being improved by our users, contributors, and maintainers. It is because of you that we can bring great software to the community.

This guide provides information on filing issues and guidelines for open source contributors. Please leave comments / suggestions if you find something is missing or incorrect.

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.

Please note we have a code of conduct, please follow it in all your interactions with the project.

Contribute Workflow

PR are always welcome, even if they only contain small fixes like typos or a few lines of codes. If there will be a significant effort, please:

  1. document it as a proposal;
  2. PR it to https://github.com/FederatedAI/KubeFATE/tree/master/proposals;
  3. Get a discussion by creating feature request issues and refer to the proposal;
  4. Implement the feature when the proposal got 2+ maintainer approved;
  5. PR to KubeFATE master branch.

Fork and clone

Fork the KubeFATE repository and clone the code to your local workspace. Per Go's workspace instructions, place KubeFATE's code on your GOPATH.

Define a local working directory:

working_dir=./kubefate

Set user to match your github profile name:

user={your github profile name}

Branch

Changes should be made on your own fork in a new branch. The branch should be named XXX-description where XXX is the number of the issue. PR should be rebased on top of master without multiple branches mixed into the PR. If your PR do not merge cleanly, use commands listed below to get it up to date.

#Suppose `kubefate` is the origin upstream

cd $working_dir
git fetch kubefate
git checkout master
git rebase kubefate/master

Branch from the updated master branch:

git checkout -b my_feature master

Keep sync with upstream

Once your branch gets out of sync with the kubefate/master branch, use the following commands to update:

git checkout my_feature
git fetch -a
git rebase kubfate/master
Please use fetch / rebase (as shown above) instead of git pull. git pull does a merge, which leaves merge commits. These make the commit history messy and violate the principle that commits ought to be individually understandable and useful (see below). You can also consider changing your .git/config file via git config branch.autoSetupRebase always to change the behavior of git pull.

Update the APIs and related documents

Our RESTful APIs are documented with Swagger If your commit that changes the RESTful APIs, make sure to run make swag in ./k8s-deploy/Makefile to update the Swagger documents. If your commit that exposes a user-faced function, make sure to add related introductions to documents.

Commit

As KubeFATE has integrated the DCO (Developer Certificate of Origin) check tool, contributors are required to sign-off that they adhere to those requirements by adding a Signed-off-by line to the commit messages. Git has even provided a -s command line option to append that automatically to your commit messages, please use it when you commit your changes.

$ git commit -s -m 'This is my commit message'

Commit your changes if they're ready:

git add -A
git commit -s #-a
git push --force-with-lease $user my_feature
The commit message should follow the convention on How to Write a Git Commit Message. Be sure to include any related GitHub issue references in the commit message. 

Push and Create PR

When ready for review, push your branch to your fork repository on github.com:

git push --force-with-lease $user my_feature

Then visit your fork at https://github.com/$user/KubeFATE and click the Compare & Pull Request button next to your my_feature branch to create a new pull request (PR). The PR should:

  1. Ensure all unit test passed;
  2. Ensure any install or build dependencies are removed before the end of the layer when doing a build;
  3. The tittle of PR should hightlight what it solve briefly. The description of PR should refer to all the issues that it addresses. Ensure to put a reference to issues (such as Close #xxx and Fixed #xxx) Please refer to the PULL_REQUEST_TEMPLATE.md.

Once your pull request has been opened it will be assigned to one or more reviewers. Those reviewers will do a thorough code review, looking for correctness, bugs, opportunities for improvement, documentation and comments, and style.

Commit changes made in response to review comments to the same branch on your fork.

Automated Testing

Once your pull request has been opened, KubeFATE will run two CI pipelines against it.

  1. In the Github action, your source code will be checked via golint, go vet and go race that makes sure the code is readable, safe and correct. Also all of unit tests will be triggered via go test against the pull request.
    • If any failure in github action checks, you need to figure out whether it is introduced by your commits.
    • If the coverage dramatic decline, you need to commit unit test to coverage your code.
  2. In the Jenkins CI, the E2E test will be triggered. The pipeline is about to build and install a FATE cluster and run the federated learning workload.