Skip to content

Commit

Permalink
[helm-chart] Add helm-docs to the helm chart workflow (#883)
Browse files Browse the repository at this point in the history
* Standardize the variables

Signed-off-by: babykart <[email protected]>

* Add Helm chart artifacts build directory

Signed-off-by: babykart <[email protected]>

* Add helm-docs to the helm chart workflow

Signed-off-by: babykart <[email protected]>

* Create a PR to update charts/garnet/README.md

Signed-off-by: babykart <[email protected]>

---------

Signed-off-by: babykart <[email protected]>
  • Loading branch information
babykart authored Dec 16, 2024
1 parent 635cd58 commit fad521e
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 5 deletions.
47 changes: 42 additions & 5 deletions .github/workflows/helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
branches:
- main
paths:
- 'charts/**'
- 'charts/*/Chart.yaml'

permissions:
contents: write
packages: write
pull-requests: write

jobs:
helm-chart:
Expand All @@ -22,35 +24,70 @@ jobs:

- name: Configure git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

- name: Install helm-docs
env:
HELM_DOCS_VERSION: "1.14.2"
run: |
cd /tmp
wget https://github.com/norwoodj/helm-docs/releases/download/v"${HELM_DOCS_VERSION}"/helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz
tar -xvf helm-docs_"${HELM_DOCS_VERSION}"_Linux_x86_64.tar.gz
sudo mv helm-docs /usr/local/bin
- name: Set helm chart appVersion from Version.props
run: |
export VERSION_PROPS=$(awk -F'[<>]' '/VersionPrefix/{print $3}' Version.props)
sed -i -e 's#Version.props#"'${VERSION_PROPS}'"#g' charts/garnet/Chart.yaml
- name: Helm lint and package
- name: Helm lint, helm-docs and helm package
run: |
mkdir .cr-release-packages
for chart in $(find charts -mindepth 1 -maxdepth 1 -type d); do
if [ -z "${chart:-}" ]; then
break
fi
helm lint "${chart}"
helm-docs --document-dependency-values --chart-search-root "${chart}"
helm package "${chart}" --dependency-update --destination .cr-release-packages
done
- name: Discard changes on the charts/garnet/Chart.yaml file
run: |
git checkout -- charts/garnet/Chart.yaml
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
add-paths: charts/garnet/README.md
token: ${{ secrets.GITHUB_TOKEN }}
committer: github-actions[bot] <${{ github.actor }}@users.noreply.github.com>
author: ${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>
signoff: false
branch: helm-docs-gen
delete-branch: true
title: '[helm-chart] Update charts/garnet/README.md by helm-docs'
body: |
- Update charts/garnet/README.md
Auto-generated by [create-pull-request][1]
[1]: https://github.com/peter-evans/create-pull-request
labels: |
helm-chart
automated pr
- name: Login to GHCR
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
run: |
echo "$GITHUB_TOKEN" | helm registry login ghcr.io --username "$GITHUB_ACTOR" --password-stdin
echo "${GITHUB_TOKEN}" | helm registry login ghcr.io --username "${GITHUB_ACTOR}" --password-stdin
- name: Push charts to GHCR
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -217,3 +217,6 @@ test/tmp/

# BenchmarkDotNet Results
BenchmarkDotNet.Artifacts/

# Helm chart artifacts
.cr-release-packages/

0 comments on commit fad521e

Please sign in to comment.