[enhancement] helm values for kubearmor relay stdout env #123
Workflow file for this run
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" | |
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@v3 | |
with: | |
go-version: "v1.20" | |
- 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 |