-
Notifications
You must be signed in to change notification settings - Fork 90
Helm Charts
Yordan Pavlov edited this page Mar 15, 2021
·
4 revisions
-
Navigate to the
helm-chart
folder: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.tgz
somewhere outside the Git repository. -
Reset all changes:
git add . git reset --hard cd ../../
-
Switch to the
gh-pages
branch:git checkout gh-pages git pull origin gh-pages
-
Paste the
dirigible-5.8.4.tgz
chart into thecharts
directory. -
Build Helm Index:
helm repo index charts/ --url https://eclipse.github.io/dirigible/charts
-
Move the
charts/index.yaml
to 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