Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Latest commit

 

History

History
39 lines (23 loc) · 1.35 KB

CONTRIBUTING.md

File metadata and controls

39 lines (23 loc) · 1.35 KB

Contributing

Pull requests are welcome here. Please keep the Code of Conduct in mind when contributing.

Opening issues

Please describe the problem or your suggestion as detailed as possible when opening an issue.

Development

Before you commit, please run pre-commit. This will also generate the documentation for the helm charts.

To set up pre-commit to run automatically on commit, run (example for Ubuntu)

# Linux
pip3 install pre-commit

# macOS
brew install pre-commit

pre-commit install --hook-type commit-msg --hook-type pre-commit

Commit messages

This repository uses Conventional Commit messages. Please ensure all your commit messages follow this syntax to enable people to quickly check what a commit does.

Valid commit types are defined in commitizen/conventional-commit-types.

Versioning

Helm charts use semantic versioning. For the charts in this repository, only [MAJOR].[MINOR].[PATCH] syntax is used, without any pre-releases.

Please bump as follows:

  • Major version for breaking changes (this includes updates of default values as users may need to manually update their values)
  • Minor version when you add features
  • Patch version for bug fixes and documentation updates