# Welcome to Volcano! - [Before you get started](#before-you-get-started) - [Code of Conduct](#code-of-conduct) - [Community Expectations](#community-expectations) - [Getting started](#getting-started) - [Your First Contribution](#your-first-contribution) - [Find something to work on](#find-something-to-work-on) - [Find a good first topic](#find-a-good-first-topic) - [Work on an Issue](#work-on-an-issue) - [File an Issue](#file-an-issue) - [Contributor Workflow](#contributor-workflow) - [Creating Pull Requests](#creating-pull-requests) - [Code Review](#code-review) - [Testing](#testing) # Before you get started ## Code of Conduct Please make sure to read and observe our [Code of Conduct](./code_of_conduct.md). ## Community Expectations Volcano is a community project driven by its community which strives to promote a healthy, friendly and productive environment. The goal of the community is to develop a volcano system which is useful for runnning high performance workloads such as AI,ML,Deep Learning Application on top of Kubernetes. To build a such volcano system at such scale requires the support of a community with similar aspirations. - See [Community Membership](./community-membership.md) for a list of various community roles. With gradual contributions, one can move up in the chain. # Getting started - Read the [get started](docs/development/prepare-for-development.md) for developing code for Volcano - Read the [setup](docs/development/development.md) for build/deploy instructions. # Your First Contribution We will help you to contribute in different areas like filing issues, developing features, fixing critical bugs and getting your work reviewed and merged. If you have questions about the development process, feel free to jump into our [Slack Channel](https://github.com/volcano-sh/volcano/blob/master/slack-invitation) or join our [mailing list](https://groups.google.com/forum/#!forum/volcano-sh). ## Find something to work on We are always in need of help, be it fixing documentation, reporting bugs or writing some code. Look at places where you feel best coding practices aren't followed, code refactoring is needed or tests are missing. Here is how you get started. ### Find a good first topic There are [multiple repositories](https://github.com/volcano-sh/) within the Volcano organization. Each repository has beginner-friendly issues that provide a good first issue. For example, [Volcano-Issues](https://github.com/volcano-sh/volcano) has [help wanted](https://github.com/volcano-sh/volcano/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) and [good first issue](https://github.com/volcano-sh/volcano/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) labels for issues that should not need deep knowledge of the system. We can help new contributors who wish to work on such issues. Another good way to contribute is to find a documentation improvement, such as a missing/broken link. #### Work on an issue When you are willing to take on an issue, you can assign it to yourself. Just reply with `/assign` or `/assign @yourself` on an issue, then the robot will assign the issue to you and your name will present at `Assignees` list. ### File an Issue While we encourage everyone to contribute code, it is also appreciated when someone reports an issue. Issues should be filed under the appropriate Volcano sub-repository. *Example:* a Volcano issue should be opened to [Volcano](https://github.com/volcano-sh/volcano/issues). Please follow the prompted submission guidelines while opening an issue. # Contributor Workflow Please do not ever hesitate to ask a question or send a pull request. This is a rough outline of what a contributor's workflow looks like: - Create a topic branch from where to base the contribution. This is usually master. - Make commits of logical units. - Make sure commit messages are in the proper format (see below). - Push changes in a topic branch to a personal fork of the repository. - Submit a pull request to [Volcano](https://github.com/volcano-sh/volcano). - The PR must receive an approval from two maintainers. ## Creating Pull Requests Pull requests are often called simply "PR". Volcano generally follows the standard [github pull request](https://help.github.com/articles/about-pull-requests/) process. In addition to the above process, a bot will begin applying structured labels to your PR. The bot may also make some helpful suggestions for commands to run in your PR to facilitate review. These `/command` options can be entered in comments to trigger auto-labeling and notifications. Refer to its [command reference documentation](https://go.k8s.io/bot-commands). ## Code Review To make it easier for your PR to receive reviews, consider the reviewers will need you to: * follow [good coding guidelines](https://github.com/golang/go/wiki/CodeReviewComments). * write [good commit messages](https://chris.beams.io/posts/git-commit/). * break large changes into a logical series of smaller patches which individually make easily understandable changes, and in aggregate solve a broader issue. * label PRs with appropriate reviewers: to do this read the messages the bot sends you to guide you through the PR process. ### Format of the commit message We follow a rough convention for commit messages that is designed to answer two questions: what changed and why. The subject line should feature the what and the body of the commit should describe the why. ``` scripts: add test codes for metamanager this add some unit test codes to improve code coverage for metamanager Fixes #12 ``` The format can be described more formally as follows: ``` :