chart-releaser
chart-releaser copied to clipboard
Hosting Helm Charts via GitHub Pages and Releases
Hi, just FYI I've setup a workflow that uses plain `helm` without GitHub Pages: https://github.com/ironpeakservices/iron-chart-go/blob/master/.github/workflows/release.yml Might be interesting for others. You install via ```shell # first add our helm repository...
## Description Following the instructions in README.md, the version from locally built binary is less than the current released version. ## Steps 1. Run through build instructions ```bash git clone...
## issue ``` charts |- chart1 |- charts |- sub-chart1 -> ../../../sub-chart1 |- sub-chart1 ``` In this case the `ct lint` requires that the `Chart.yaml` for `chart1` have an entry...
I was trying to use tags as `v` to create a release on github with the helm chart plus some other files and then rebuild the index correctly with `cr...
https://github.com/helm/chart-releaser/blob/master/pkg/releaser/releaser.go#L210 `github.com` is hardcoded in this line, which breaks `cr index --push/--pr` when using Github Enterprise.
i have a repo with a series of charts in it and i just wrote a script to iterate over each chart calling `helm package` on every chart, and then...
Gave it a try but ran into the following when creating the index: ``` # Example cr index --charts-repo https://my-repo/k8s/helm/charts --owner wallyqs --git-repo https://github.com/wallyqs/my-charts ====> UpdateIndexFile new index at .cr-index/index.yaml...
Currently cr supports releasing charts from `helm/charts`. I am building Helm charts that have subcharts they also can work independently. What i would need isa way that cr also scans...
The Readme is missing a clear example what subcommands should be issued in which order. I went to a folder containing a single helm release and did `cr package` which...