Added the chainsaw tests for pod security and rbac policies #3
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: ChainSaw Test | |
on: | |
push: | |
branches: | |
- 'main' | |
# this action needs to read GH secret | |
# hence prevents executing on PRs from forks | |
# disabling running on PRs until we find a workaround for this | |
pull_request: | |
branches: | |
- 'main' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-e2etest: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
strategy: | |
fail-fast: false | |
matrix: | |
k8s-version: [v1.28.0, v1.27.3, v1.26.3, v1.25.8, v1.24.12, v1.23.17] | |
n4k-chart-version: [1.6.11, 3.0.9] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare environment | |
run: K8S_VERSION=${{ matrix.k8s-version }} make kind-create-cluster | |
- name: Install kyverno | |
run: | | |
N4K_VERSION=${{ matrix.n4k-chart-version }} make kind-deploy-kyverno | |
- name: Check Kyverno status | |
run: make wait-for-kyverno | |
- name: Install chainsaw | |
uses: kyverno/action-install-chainsaw@6ab03ccb2c8309b5f494fcbc78ec3a2d80cfabee # v0.1.0 | |
- name: Test with Chainsaw | |
run: make test-chainsaw |