# Contributing Guidelines Contributions are welcome via GitHub Pull Requests. This document outlines the process to help get your contribution accepted. Any type of contribution is welcome; from new features, bug fixes, [tests](#testing), documentation improvements, or even [adding charts to the repository](#adding-a-new-chart-to-the-repository) (if it's viable once evaluated the feasibility). ## How to Contribute 1. Fork this repository, develop, and test your changes. 2. Submit a pull request. >[!NOTE] > To make the Pull Requests' (PRs) merging process easier, please submit changes to multiple charts in separate PRs. ### Technical Requirements When submitting a PR make sure that it: - Must follow [Helm best practices](https://helm.sh/docs/chart_best_practices/). - Any change to a chart requires a version bump following [semver](https://semver.org/) principles. - Any change to a Helm template (especially new templates) must include a license header like the following: ```yaml {{- /* Copyright Broadcom, Inc. All Rights Reserved. SPDX-License-Identifier: APACHE-2.0 */}} ``` #### Sign Your Work The sign-off is a simple line at the end of the explanation for a commit. All commits need to be signed. Your signature certifies that you wrote the patch or otherwise have the right to contribute the material. The rules are pretty simple, you only need to certify the guidelines from [developercertificate.org](https://developercertificate.org/). Then you just add a line to every git commit message: ```text Signed-off-by: Joe Smith ``` Use your real name (sorry, no pseudonyms or anonymous contributions.) If you set your `user.name` and `user.email` git configs, you can sign your commit automatically with `git commit -s`. Note: If your git config information is set properly then viewing the `git log` information for your commit will look something like this: ```text Author: Joe Smith Date: Thu Feb 2 11:41:15 2018 -0800 Update README Signed-off-by: Joe Smith ``` Notice the `Author` and `Signed-off-by` lines match. If they don't your PR will be rejected by the automated DCO check. ### Documentation Requirements - A chart's `README.md` must include configuration options. The tables of parameters are generated based on the metadata information from the `values.yaml` file, by using [this tool](https://github.com/bitnami/readme-generator-for-helm). - A chart's `NOTES.txt` must include relevant post-installation information. - The title of the PR starts with chart name (e.g. `[bitnami/chart]`)