-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the 1.11 n4k version support in the chainsaw test workflow pipe…
…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
1 parent
cd6604b
commit 37907d5
Showing
1 changed file
with
45 additions
and
15 deletions.
There are no files selected for viewing
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
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 | ||
|