Skip to content

Commit

Permalink
Added the 1.11 n4k version support in the chainsaw test workflow pipe…
Browse files Browse the repository at this point in the history
…line (#120)

* Added the 1.11 n4k version in the github action pipeline

Signed-off-by: nsathyaseelan <[email protected]>

* Added the 1.11 n4k version in the github action pipeline

Signed-off-by: nsathyaseelan <[email protected]>

* Separated the chinsaw workflow file to validate n4k 1.11 with supported k8s version

Signed-off-by: nsathyaseelan <[email protected]>

* Added the 1.11 n4k version in the github action pipeline

Signed-off-by: nsathyaseelan <[email protected]>

---------

Signed-off-by: nsathyaseelan <[email protected]>
  • Loading branch information
nsathyaseelan authored Mar 1, 2024
1 parent cd6604b commit 37907d5
Showing 1 changed file with 45 additions and 15 deletions.
60 changes: 45 additions & 15 deletions .github/workflows/chainsaw-e2e.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,73 @@
name: ChainSaw Test

on:
push:
branches:
- 'release-chart-1.10'

- main
pull_request:
branches:
- 'release-chart-1.10'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
- main

jobs:
run-e2etest:
run-e2etest-1:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
k8s-version: [v1.29.2, v1.28.7, v1.27.11, v1.26.14, v1.25.16, v1.24.12, v1.23.17]
# For n4k-versions 1.10
k8s-version: [v1.29.2, v1.28.0, v1.27.3, v1.26.3, v1.25.8, v1.24.12, v1.23.17]
n4k-chart-version: [3.0.18]


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/[email protected]

- name: Verify Chainsaw Installation
run: chainsaw version

- name: Test with Chainsaw
run: make test-chainsaw

run-e2etest-2:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
k8s-version: [v1.29.2, v1.28.0, v1.27.3, v1.26.3, v1.25.8]
n4k-chart-version: [3.1.1]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Prepare environment
run: K8S_VERSION=${{ matrix.k8s-version }} make kind-create-cluster
run: |
K8S_VERSION=${{ matrix.k8s-version }} make kind-create-cluster
- name: Install kyverno
run: N4K_VERSION=${{ matrix.n4k-chart-version }} make kind-deploy-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/[email protected]
- name: Install chainsaw
uses: kyverno/[email protected]

- name: Verify Chainsaw Installation
run: chainsaw version
Expand Down

0 comments on commit 37907d5

Please sign in to comment.