-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add release process * add release process
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Creating a new individual chart release | ||
|
||
This repository supports multiple Helm charts, and has a specific release process dependent on Helm [chart-releaser](https://github.com/helm/chart-releaser). | ||
Chart releases must be done against the last commit to main only. | ||
When needing to release multiple charts, you must do the merge to main and release process, one chart at a time. | ||
|
||
## Chart release process | ||
|
||
1. Ensure the last commit merged to main is for the specific Helm chart about to release. | ||
2. Create a new Release with proper release notes. Add a tag to the release in the following format: `v1.2.3-CHART_NAME`, where CHART_NAME is the name of the chart being released (ie: honeycomb, refinery, etc.) | ||
3. The CI workflow will package the chart into a new release, and update the `index.yaml` file in the `gh-pages` branch with an additional entry pointing to the new chart release. | ||
|
||
The Honeycomb Helm chart repository is contained and served from within the `gh-pages` branch. | ||
You can view the repository's [index](https://honeycombio.github.io/helm-charts/index.yaml) definition. |