From e300b63116e66b841f9acccdd4c1c78c60486432 Mon Sep 17 00:00:00 2001 From: changzhen Date: Tue, 7 Mar 2023 16:14:33 +0800 Subject: [PATCH] reduce the number of kubernetes version support in CI E2E Signed-off-by: changzhen --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65aebdf27..e0639ba7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -111,7 +111,10 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - k8s: [ v1.21.10, v1.22.7, v1.23.4, v1.24.2, v1.25.0, v1.26.0 ] + # Here support the latest three minor releases of Kubernetes, this can be considered to be roughly + # the same as the End of Life of the Kubernetes release: https://kubernetes.io/releases/ + # Please remember to update the CI Schedule Workflow when we add a new version. + k8s: [ v1.24.2, v1.25.0, v1.26.0 ] steps: - name: checkout code uses: actions/checkout@v3