-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3bf76b
commit 3371045
Showing
2 changed files
with
80 additions
and
59 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,78 @@ | ||
name: Pull Request Workflow for Helm Chart changes | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- 'deployments/kubernetes/chart/reloader/**' | ||
|
||
env: | ||
DOCKER_FILE_PATH: Dockerfile | ||
DOCKER_UBI_FILE_PATH: Dockerfile.ubi | ||
KUBERNETES_VERSION: "1.30.0" | ||
KIND_VERSION: "0.23.0" | ||
REGISTRY: ghcr.io | ||
|
||
jobs: | ||
qa: | ||
uses: stakater/.github/.github/workflows/pull_request_doc_qa.yaml@v0.0.98 | ||
with: | ||
MD_CONFIG: .github/md_config.json | ||
DOC_SRC: README.md | ||
MD_LINT_CONFIG: .markdownlint.yaml | ||
|
||
helm-validation: | ||
permissions: | ||
contents: read | ||
|
||
runs-on: ubuntu-latest | ||
name: Helm Chart Validation | ||
|
||
steps: | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{github.event.pull_request.head.sha}} | ||
fetch-depth: 0 | ||
|
||
# Setting up helm binary | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v4 | ||
with: | ||
version: v3.11.3 | ||
|
||
- name: Helm chart unit tests | ||
uses: d3adb5/helm-unittest-action@v2 | ||
with: | ||
charts: deployments/kubernetes/chart/reloader | ||
|
||
- name: Add Stakater Helm Repo | ||
run: | | ||
helm repo add stakater https://stakater.github.io/stakater-charts | ||
- name: Get version for chart from helm repo | ||
id: chart_eval | ||
run: | | ||
current_chart_version=$(helm search repo stakater/reloader | tail -n 1 | awk '{print $2}') | ||
echo "CURRENT_CHART_VERSION=$(echo ${current_chart_version})" >> $GITHUB_OUTPUT | ||
- name: Get Updated Chart version from Chart.yaml | ||
uses: mikefarah/yq@master | ||
id: new_chart_version | ||
with: | ||
cmd: yq e '.version' deployments/kubernetes/chart/reloader/Chart.yaml | ||
|
||
- name: Check Version | ||
uses: aleoyakas/check-semver-increased-action@v1 | ||
id: check-version | ||
with: | ||
current-version: ${{ steps.new_chart_version.outputs.result }} | ||
previous-version: ${{ steps.chart_eval.outputs.CURRENT_CHART_VERSION }} | ||
|
||
- name: Fail if Helm Chart version isnt updated | ||
if: steps.check-version.outputs.is-version-increased != 'true' | ||
run: | | ||
echo "Helm Chart Version wasnt updated" | ||
exit 1 |
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