Public Helm chart repo
Follow the steps below to add a new chart to the repo
git clone https://github.com/krg7880/charts.git
helm create <chart_name>
- Create a new charthelm package <chart_name>
- Package up the chart as a *.tgz tarballhelm repo index .
- Generate or update an existing index.yamlgit add .
- Add the index.yaml and the .tgz tarballgit commit -m "<your commit message>"
- Commit your changes
To add this repo as a source for charts, follow the steps below:
To add a private repo, you need to specify your credentials.
helm repo add - username <your_github_username> - password <your_github_token> <repo_name> 'https://raw.githubusercontent.com/<your_org>/charts/master/
To add a public repo, run the following command:
helm repo add <repo_name> https://raw.githubusercontent.com/<your_org>/charts/master/
helm search repo <chart>