This repository contains a collection of Helm charts for various applications. Helm is a package manager for Kubernetes that helps you manage and deploy applications and services on Kubernetes clusters.
To use one of the charts in this repository, follow these steps:
-
Add the Helm chart repository to your local repositories:
helm repo add <repo-name> <repo-url>
-
Update the Helm repositories:
helm repo update
-
Install the desired chart:
helm install <release-name> <repo-name>/<chart-name>
Replace
<release-name>
with the name you want to give to the release,<repo-name>
with the name you assigned to the repository in step 1, and<chart-name>
with the name of the chart you want to install.You can also customize the installation by providing additional options and values. Refer to the individual chart's documentation for more information.
Feel free to contribute to this repository! Contributions are welcome and encouraged. Here's how you can contribute:
- Fork this repository.
- Create a new branch for your contribution:
git checkout -b my-contribution
. - Make your changes and commit them:
git commit -am 'Add some contribution'
. - Push your changes to your fork:
git push origin my-contribution
. - Open a Pull Request (PR) in this repository, describing your changes and the reasoning behind them.
Please ensure that your contributions adhere to the guidelines and best practices for Helm chart development. If you have any questions or need assistance, feel free to open an issue in this repository.