Skip to content

Latest commit

 

History

History
93 lines (67 loc) · 4.14 KB

CONTRIBUTING.md

File metadata and controls

93 lines (67 loc) · 4.14 KB

SRIOV Network Operator

Meetings

Join us for project discussions at K8s Network & Resource management meetings. The meetings take place on a weekly basis on Monday and Tuesday in alternating weeks:

  • Time: 15:00 - 16:00 GMT / 10:00-11:00 ET / 07:00-08:00 PST every other Monday

  • Time: 14:00 - 15:00 GMT / 09:00-10:00 ET / 06:00-07:00 PST on every other Tuesday

  • Meeting notes and agenda

  • Zoom channel

How to Contribute

SRIOV Network Operator is Apache 2.0 licensed and accepts contributions via GitHub pull requests. This document outlines some of the conventions on development workflow, commit message formatting, contact points and other resources to make it easier to get your contribution accepted.

Coding Style

Please follows the standard formatting recommendations and language idioms set out in Effective Go and in the Go Code Review Comments wiki.

Format of the patch

Each patch is expected to comply with the following format:

Change summary

More detailed explanation of your changes: Why and how.
Wrap it to 72 characters.
See [here] (http://chris.beams.io/posts/git-commit/)
for some more good advices.

[Fixes #NUMBER (or URL to the issue)]

For example:

Fix poorly named identifiers
  
One identifier, fnname, in func.go was poorly named.  It has been renamed
to fnName.  Another identifier retval was not needed and has been removed
entirely.

Fixes #1

Contributing Code

We always encourage the contribution for the community project. We like to collaborate with various stake holder on this project. We ask developer to keep following guidelines in mind before the contribution.

  • Make sure to create an Issue for bug fix or the feature request. Issues are discussed on a regular basis at K8s Network & Resource management meetings.
  • For bugs: For the bug fixes, please follow the issue template format while creating a issue. If you have already found a fix, feel free to submit a Pull Request referencing the Issue you created. Include the Fixes # syntax to link it to the issue you're addressing.
  • For feature requests, For the feature requests, please follow the issue template format while creating a feature requests. We want to improve upon SRIOV Network Operator incrementally which means small changes or features at a time.
    • Please make sure each PR are compiling or passed by Travis.
    • In order to ensure your PR can be reviewed in a timely manner, please keep PRs small

Once you're ready to contribute code back to this repo, start with these steps:

  • Fork the appropriate sub-projects that are affected by your change.
  • Clone the fork to your machine:
$ git clone https://github.com/k8snetworkplumbingwg/sriov-network-operator.git
  • Create a topic branch with prefix dev/ for your change and checkout that branch:
$ git checkout -b dev/some-topic-branch
  • Make your changes to the code and add tests to cover contributed code.
  • Run make all to validate it builds and will not break current functionality.
  • Commit your changes and push them to your fork.
  • Open a pull request for the appropriate project.
  • Contributors will review your pull request, suggest changes, run tests and eventually merge or close the request.

We encourage contributor to test SRIOV Network Operator with various NICs to check the compatibility.

Contact Us

  • General channel on NPWG Slack. Request an invite to NPWG slack here.
  • Feel free to post GitHub issues and PRs for review
  • Attend either K8s Network & Resource mangement or Additional K8s Network & Resource management meetings