mirror of
https://github.com/kyverno/kyverno.git
synced 2025-04-08 18:15:48 +00:00
run conformance tests on different k8s versions (#5733)
Signed-off-by: ShutingZhao <shuting@nirmata.com> Signed-off-by: ShutingZhao <shuting@nirmata.com>
This commit is contained in:
parent
646064f3f5
commit
18aeb26a1d
1 changed files with 7 additions and 1 deletions
8
.github/workflows/conformance.yaml
vendored
8
.github/workflows/conformance.yaml
vendored
|
@ -11,6 +11,10 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
run-conformance:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
k8s-version: [v1.24.7, v1.25.3, v1.26.0]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
@ -22,7 +26,9 @@ jobs:
|
|||
with:
|
||||
go-version: ~1.19.4
|
||||
- name: Prepare environment
|
||||
run: make kind-create-cluster kind-deploy-kyverno
|
||||
run: |
|
||||
export KIND_IMAGE=kindest/node:${{ matrix.k8s-version }}
|
||||
make kind-create-cluster kind-deploy-kyverno
|
||||
- name: Wait for Kyverno to start
|
||||
run: sleep 60
|
||||
- name: Test with kuttl
|
||||
|
|
Loading…
Add table
Reference in a new issue