-
Notifications
You must be signed in to change notification settings - Fork 96
Helm Charts
Yordan Pavlov edited this page Mar 15, 2021
·
4 revisions
-
Navigate to the
helm-chartfolder:cd releng/helm-charts/ -
Set the Dirigible version in
dirigible/Chart.yaml:-
Replace the
{DirigibleVersion}placeholder with the target Dirigible version (e.g. 5.8.4)
-
-
Package Helm Chart:
helm package dirigible -
Copy the
dirigible-5.8.4.tgzsomewhere outside the Git repository. -
Reset all changes:
git add . git reset --hard cd ../../ -
Switch to the
gh-pagesbranch:git checkout gh-pages git pull origin gh-pages -
Paste the
dirigible-5.8.4.tgzchart into thechartsdirectory. -
Build Helm Index:
helm repo index charts/ --url https://eclipse.github.io/dirigible/charts -
Move the
charts/index.yamlto the root folder:mv charts/index.yaml . -
Push the changes:
git add index.yaml git add charts/ git commit -m "Helm Charts Updated" git push origin gh-pages