Skip to content

LTD-Beget/kaas-helm-charts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

213 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lint the chart

helm lint helm-chart-sources/*

Create the Helm chart package

for d in helm-chart-sources/*; do
  [ -f "$d/Chart.yaml" ] || continue

  NAME=$(yq -r '.name' "$d/Chart.yaml")
  VERSION=$(yq -r '.version' "$d/Chart.yaml")
  PKG="helm-chart-revisions/${NAME}-${VERSION}.tgz"

  [ -f "$PKG" ] && continue

  helm package "$d" --destination helm-chart-revisions
done

Create the Helm chart repository index

helm repo index --url https://blog.beget.com/kaas-helm-charts/ .

Push the git repository on GitHub

git add . && git commit -m "Initial commit" && git push origin main

Helm repo add/update

helm repo add wrapper https://blog.beget.com/kaas-helm-charts/
helm repo update wrapper

Helm search add/update

helm search repo wrapper

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors