helm-internal

kwiff’s own helm charts

Reference to create a helm chart

https://www.opcito.com/blogs/creating-helm-repository-using-github-pages

cd charts  helm lint    echo -e “User-Agent: *\nDisallow: /” > robots.txt  Helm package charts/observability-service/  Helm repo index --url .  Note: If you make any further changes in the Helm chart, you must regenerate the index.yaml file and the .tgz file with the latest changes as mentioned in Steps 5 and 6.

However, you can use –merge flag to add new charts to an existing index incrementally.yaml:

helm repo index –url --merge index.yaml .  Read more about Helm index here.

Step 6: Push the code to GitHub repository 

git status 

git add . 

git commit -m “your_commit_message”  git push