Merge pull request #1864 from daemon1024/update-stable-143 #10
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
name: ci-test-helm-charts | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "deployments/helm/**" | |
- ".github/workflows/ci-test-helm-charts.yml" | |
pull_request: | |
branches: [main] | |
paths: | |
- "deployments/helm/**" | |
- ".github/workflows/ci-test-helm-charts.yml" | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
lint: | |
name: Helm Chart Tests / ubuntu 20.04 | |
runs-on: "ubuntu-20.04" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'KubeArmor/go.mod' | |
- uses: azure/setup-helm@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: helm lint | |
run: | | |
helm lint ./deployments/helm/KubeArmor | |
helm lint ./deployments/helm/KubeArmorOperator | |
- name: Validate helm environment template values | |
run: | | |
./.github/workflows/helm-validate-values.sh |