mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
chore: split conformance jobs per folder (#10974)
* chore: simplify e2e matrix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * chore: use dynamic matrix Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * chore: split conformance jobs per folder Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
This commit is contained in:
parent
e4afa3a125
commit
61c4a3e7b7
2 changed files with 472 additions and 76 deletions
62
.github/actions/run-tests/action.yaml
vendored
Normal file
62
.github/actions/run-tests/action.yaml
vendored
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
name: Runs E2E Tests
|
||||||
|
description: Runs E2E tests using chainsaw
|
||||||
|
inputs:
|
||||||
|
k8s-version:
|
||||||
|
description: Kubernetes version
|
||||||
|
required: true
|
||||||
|
config:
|
||||||
|
description: Chainsaw config
|
||||||
|
required: true
|
||||||
|
tests:
|
||||||
|
description: Test regex
|
||||||
|
required: true
|
||||||
|
token:
|
||||||
|
description: GH token
|
||||||
|
required: true
|
||||||
|
runs:
|
||||||
|
using: composite
|
||||||
|
steps:
|
||||||
|
# install tools
|
||||||
|
- name: Install helm
|
||||||
|
id: helm
|
||||||
|
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
|
||||||
|
- name: Install chainsaw
|
||||||
|
uses: kyverno/action-install-chainsaw@82d8e747037f840e0ef9bdd97ecdc617f5535bdc # v0.2.8
|
||||||
|
# create cluster
|
||||||
|
- name: Create kind cluster
|
||||||
|
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0
|
||||||
|
with:
|
||||||
|
node_image: kindest/node:${{ inputs.k8s-version }}
|
||||||
|
cluster_name: kind
|
||||||
|
config: ./scripts/config/kind/default.yaml
|
||||||
|
# deploy kyverno
|
||||||
|
- name: Download kyverno images archive
|
||||||
|
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
|
||||||
|
with:
|
||||||
|
name: kyverno.tar
|
||||||
|
- name: Load kyverno images archive in kind cluster
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
kind load image-archive kyverno.tar --name kind
|
||||||
|
- name: Install kyverno
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
export HELM=${{ steps.helm.outputs.helm-path }}
|
||||||
|
export USE_CONFIG=standard
|
||||||
|
make kind-install-kyverno
|
||||||
|
- name: Wait for kyverno ready
|
||||||
|
uses: ./.github/actions/kyverno-wait-ready
|
||||||
|
# run tests
|
||||||
|
- name: Test with Chainsaw
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ inputs.token }}
|
||||||
|
run: |
|
||||||
|
set -e
|
||||||
|
cd ./test/conformance/chainsaw && chainsaw test --include-test-regex '^chainsaw$/${{ inputs.tests }}' --config ../../../.chainsaw.yaml
|
||||||
|
# debug
|
||||||
|
- name: Debug failure
|
||||||
|
if: failure()
|
||||||
|
uses: ./.github/actions/kyverno-logs
|
486
.github/workflows/conformance.yaml
vendored
486
.github/workflows/conformance.yaml
vendored
|
@ -84,91 +84,385 @@ jobs:
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
standard:
|
assert:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
packages: read
|
packages: read
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
k8s-version:
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
# - v1.28.13
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).assert }}
|
||||||
# - v1.29.8
|
needs: [ prepare-images, define-matrix ]
|
||||||
# - v1.30.4
|
|
||||||
- v1.31.0
|
|
||||||
tests:
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).assert }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).autogen }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).background-only }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).cleanup }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).deferred }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).events }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).exceptions }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).filter }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).generate }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).globalcontext }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).lease }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).mutate }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).policy-validation }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).rangeoperators }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).rbac }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).reports }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).validate }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).verify-manifests }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).verifyImages }}
|
|
||||||
- ${{ fromJSON(needs.define-matrix.outputs.tests).webhooks }}
|
|
||||||
needs:
|
|
||||||
- prepare-images
|
|
||||||
- define-matrix
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
- uses: ./.github/actions/run-tests
|
||||||
# install tools
|
|
||||||
- name: Install helm
|
|
||||||
id: helm
|
|
||||||
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # v4.2.0
|
|
||||||
with:
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Install chainsaw
|
|
||||||
uses: kyverno/action-install-chainsaw@82d8e747037f840e0ef9bdd97ecdc617f5535bdc # v0.2.8
|
autogen:
|
||||||
# create cluster
|
runs-on: ubuntu-latest
|
||||||
- name: Create kind cluster
|
permissions:
|
||||||
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).autogen }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
with:
|
with:
|
||||||
node_image: kindest/node:${{ matrix.k8s-version }}
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
cluster_name: kind
|
config: standard
|
||||||
config: ./scripts/config/kind/default.yaml
|
tests: ${{ matrix.tests }}
|
||||||
# deploy kyverno
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Download kyverno images archive
|
|
||||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
|
background-only:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).background-only }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
with:
|
with:
|
||||||
name: kyverno.tar
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
- name: Load kyverno images archive in kind cluster
|
config: standard
|
||||||
shell: bash
|
tests: ${{ matrix.tests }}
|
||||||
run: |
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
set -e
|
|
||||||
kind load image-archive kyverno.tar --name kind
|
cleanup:
|
||||||
- name: Install kyverno
|
runs-on: ubuntu-latest
|
||||||
shell: bash
|
permissions:
|
||||||
run: |
|
packages: read
|
||||||
set -e
|
strategy:
|
||||||
export HELM=${{ steps.helm.outputs.helm-path }}
|
fail-fast: false
|
||||||
export USE_CONFIG=standard
|
matrix:
|
||||||
make kind-install-kyverno
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
- name: Wait for kyverno ready
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).cleanup }}
|
||||||
uses: ./.github/actions/kyverno-wait-ready
|
needs: [ prepare-images, define-matrix ]
|
||||||
# run tests
|
steps:
|
||||||
- name: Test with Chainsaw
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
shell: bash
|
- uses: ./.github/actions/run-tests
|
||||||
env:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
run: |
|
config: standard
|
||||||
set -e
|
tests: ${{ matrix.tests }}
|
||||||
cd ./test/conformance/chainsaw && chainsaw test --include-test-regex '^chainsaw$/${{ matrix.tests }}' --config ../../../.chainsaw.yaml
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# debug
|
|
||||||
- name: Debug failure
|
deferred:
|
||||||
if: failure()
|
runs-on: ubuntu-latest
|
||||||
uses: ./.github/actions/kyverno-logs
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).deferred }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
events:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).events }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
exceptions:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).exceptions }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
filter:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).filter }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
generate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).generate }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
globalcontext:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).globalcontext }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
lease:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).lease }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
mutate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).mutate }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
policy-validation:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).policy-validation }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
rangeoperators:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).rangeoperators }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
rbac:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).rbac }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
reports:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).reports }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
validate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).validate }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
verify-manifests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).verify-manifests }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
verifyImages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).verifyImages }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
webhooks:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: read
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
k8s-version: [ v1.28.13, v1.29.8, v1.30.4, v1.31.0 ]
|
||||||
|
tests: ${{ fromJSON(needs.define-matrix.outputs.tests).webhooks }}
|
||||||
|
needs: [ prepare-images, define-matrix ]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||||
|
- uses: ./.github/actions/run-tests
|
||||||
|
with:
|
||||||
|
k8s-version: ${{ matrix.k8s-version }}
|
||||||
|
config: standard
|
||||||
|
tests: ${{ matrix.tests }}
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
k8s-version-specific-tests-above-1-28:
|
k8s-version-specific-tests-above-1-28:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -797,7 +1091,27 @@ jobs:
|
||||||
conformance-required-success:
|
conformance-required-success:
|
||||||
name: conformance-required
|
name: conformance-required
|
||||||
needs:
|
needs:
|
||||||
- standard
|
- assert
|
||||||
|
- autogen
|
||||||
|
- background-only
|
||||||
|
- cleanup
|
||||||
|
- deferred
|
||||||
|
- events
|
||||||
|
- exceptions
|
||||||
|
- filter
|
||||||
|
- generate
|
||||||
|
- globalcontext
|
||||||
|
- lease
|
||||||
|
- mutate
|
||||||
|
- policy-validation
|
||||||
|
- rangeoperators
|
||||||
|
- rbac
|
||||||
|
- reports
|
||||||
|
- ttl
|
||||||
|
- validate
|
||||||
|
- verify-manifests
|
||||||
|
- verifyImages
|
||||||
|
- webhooks
|
||||||
- ttl
|
- ttl
|
||||||
- force-failure-policy-ignore
|
- force-failure-policy-ignore
|
||||||
- k8s-version-specific-tests-above-1-28
|
- k8s-version-specific-tests-above-1-28
|
||||||
|
@ -814,7 +1128,27 @@ jobs:
|
||||||
conformance-required-failure:
|
conformance-required-failure:
|
||||||
name: conformance-required
|
name: conformance-required
|
||||||
needs:
|
needs:
|
||||||
- standard
|
- assert
|
||||||
|
- autogen
|
||||||
|
- background-only
|
||||||
|
- cleanup
|
||||||
|
- deferred
|
||||||
|
- events
|
||||||
|
- exceptions
|
||||||
|
- filter
|
||||||
|
- generate
|
||||||
|
- globalcontext
|
||||||
|
- lease
|
||||||
|
- mutate
|
||||||
|
- policy-validation
|
||||||
|
- rangeoperators
|
||||||
|
- rbac
|
||||||
|
- reports
|
||||||
|
- ttl
|
||||||
|
- validate
|
||||||
|
- verify-manifests
|
||||||
|
- verifyImages
|
||||||
|
- webhooks
|
||||||
- ttl
|
- ttl
|
||||||
- force-failure-policy-ignore
|
- force-failure-policy-ignore
|
||||||
- k8s-version-specific-tests-above-1-28
|
- k8s-version-specific-tests-above-1-28
|
||||||
|
|
Loading…
Add table
Reference in a new issue