Skip to content

Commit

Permalink
ci : Add Kubernetes 1.29.0 to E2E tests Kubernetes version matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Rohan Kumar <rohaan@redhat.com>
  • Loading branch information
rohanKanojia authored and manusa committed Jan 8, 2024
1 parent fd50fa9 commit 1a1a9f5
Showing 1 changed file with 1 addition and 36 deletions.
37 changes: 1 addition & 36 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
strategy:
fail-fast: false
matrix:
kubernetes: [v1.28.1,v1.27.5, v1.26.8, v1.25.13, v1.20.15, v1.19.16]
kubernetes: [v1.29.0,v1.28.1,v1.27.5, v1.26.8, v1.25.13, v1.20.15, v1.19.16]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -93,41 +93,6 @@ jobs:
run: |
./mvnw ${MAVEN_ARGS} -Pitests -pl $IT_MODULE test -Dtest="io.fabric8.kubernetes.**"
minikube_docker:
name: Docker K8S
needs: buildWithoutTests
runs-on: ubuntu-latest
if: github.repository == 'fabric8io/kubernetes-client'
strategy:
fail-fast: false
matrix:
kubernetes: [v1.28.1]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Minikube-Kubernetes
uses: manusa/actions-setup-minikube@v2.10.0
with:
minikube version: v1.31.2
driver: docker
container runtime: containerd
kubernetes version: ${{ matrix.kubernetes }}
github token: ${{ secrets.GITHUB_TOKEN }}
start args: '--force'
- name: Cache .m2 registry
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: cache-e2e-${{ github.sha }}-${{ github.run_id }}
- name: Setup Java 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
- name: Install and Run Integration Tests
run: |
./mvnw ${MAVEN_ARGS} -Pitests -pl $IT_MODULE test -Dtest="io.fabric8.kubernetes.**"
k8s-legacy:
name: K8S legacy
needs: buildWithoutTests
Expand Down

0 comments on commit 1a1a9f5

Please sign in to comment.