NDEV-17894: correct mutate resource for disallow-previliged containers #101
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: Kuttl Test | |
on: | |
push: | |
branches: | |
- 'kyverno-1.10' | |
# 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: | |
- 'kyverno-1.10' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-e2etest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare environment | |
run: make kind-create-cluster | |
- name: Install kyverno | |
run: | | |
N4K_LICENSE_KEY=${{ secrets.N4K_CI_LICENSE }} make kind-deploy-kyverno | |
- name: Check Kyverno status | |
run: make wait-for-kyverno | |
- name: Test with kuttl | |
run: make test-kuttl |