-
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 v1.27.3 to E2E test matrix
Signed-off-by: Rohan Kumar <[email protected]>
- Loading branch information
1 parent
9ed039b
commit db8d02b
Showing
1 changed file
with
8 additions
and
6 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 |
---|---|---|
|
@@ -60,8 +60,8 @@ jobs: | |
- name: Install Kubernetes Client | ||
run: ./mvnw ${MAVEN_ARGS} clean install -DskipTests -Djacoco.skip=true | ||
|
||
minikube: | ||
name: K8S | ||
minikube_baremetal: | ||
name: Baremetal K8S | ||
needs: buildWithoutTests | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'fabric8io/kubernetes-client' | ||
|
@@ -93,23 +93,25 @@ jobs: | |
run: | | ||
./mvnw ${MAVEN_ARGS} -Pitests -pl $IT_MODULE test -Dtest="io.fabric8.kubernetes.**" | ||
k8s-1_26: | ||
name: K8S 1.26 | ||
minikube_docker: | ||
name: Docker K8S | ||
needs: buildWithoutTests | ||
runs-on: ubuntu-latest | ||
if: github.repository == 'fabric8io/kubernetes-client' | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
kubernetes: [v1.27.3, v1.26.0] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Minikube-Kubernetes | ||
uses: manusa/[email protected] | ||
with: | ||
minikube version: v1.28.0 | ||
minikube version: v1.30.1 | ||
driver: docker | ||
container runtime: containerd | ||
kubernetes version: v1.26.0 | ||
kubernetes version: ${{ matrix.kubernetes }} | ||
github token: ${{ secrets.GITHUB_TOKEN }} | ||
start args: '--force' | ||
- name: Cache .m2 registry | ||
|