Helm charts for Rediver, served from a custom-domain Helm repository backed by GitHub Pages.
helm repo add rediver https://helm.rediver.ai
helm repo update
helm search repo rediverThen install a chart, e.g. the connector:
helm install my-connector rediver/connector \
--namespace rediver --create-namespace \
--set rediver.token=<cluster-token>| Chart | Description |
|---|---|
connector |
Outbound agent bridging external platforms (GitLab, etc.) with the Rediver backend. |
- Charts live under
charts/<name>/. - On push to
main, therelease-chartsworkflow runshelm/chart-releaser-action: it packages each chart whoseversionchanged, publishes a GitHub Release with the.tgz, and updatesindex.yamlon thegh-pagesbranch. - GitHub Pages serves
gh-pagesat the custom domain helm.rediver.ai (seeCNAME). - The
index.yamlreferences the.tgzassets hosted on GitHub Releases.
- Edit the chart under
charts/<name>/. - Bump
versionin that chart'sChart.yaml(SemVer) — releases are keyed off the version. - Open a PR. The
lint-chartsworkflow validates it. - Merge to
main. The release workflow publishes the new version automatically.
Create charts/<name>/ with the standard Helm layout (Chart.yaml, values.yaml,
templates/). No workflow changes needed — chart-releaser discovers every subdirectory
of charts/.