We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Navigate to the helm-chart folder:
helm-chart
cd releng/helm-charts/
Set the Dirigible version in dirigible/Chart.yaml:
dirigible/Chart.yaml
Replace the {DirigibleVersion} placeholder with the target Dirigible version (e.g. 5.8.4)
{DirigibleVersion}
Package Helm Chart:
helm package dirigible
Copy the dirigible-5.8.4.tgz somewhere outside the Git repository.
dirigible-5.8.4.tgz
Reset all changes:
git add . git reset --hard cd ../../
Switch to the gh-pages branch:
gh-pages
git checkout gh-pages git pull origin gh-pages
Paste the dirigible-5.8.4.tgz chart into the charts directory.
charts
Build Helm Index:
helm repo index charts/ --url https://eclipse.github.io/dirigible/charts
Move the charts/index.yaml to the root folder:
charts/index.yaml
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