-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci : Add Kubernetes 1.29.0 to E2E tests Kubernetes version matrix
Signed-off-by: Rohan Kumar <[email protected]>
- Loading branch information
1 parent
6727c74
commit 9f4c02b
Showing
1 changed file
with
1 addition
and
36 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 |
---|---|---|
|
@@ -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 | ||
|
@@ -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/[email protected] | ||
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 | ||
|