Merge pull request #3244 from XiShanYongYe-Chang/reduce-k8s-versions-number

reduce the number of kubernetes version support in CI E2E
This commit is contained in:
karmada-bot 2023-03-08 11:38:14 +08:00 committed by GitHub
commit 2c834fe94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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