-
Notifications
You must be signed in to change notification settings - Fork 17
46 lines (38 loc) · 1.15 KB
/
chainsaw-e2e.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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