From 0eaf1dc131d0bbf4d62217fc6fcec78423bce481 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Wed, 24 Apr 2024 17:11:53 +0200 Subject: [PATCH 1/2] Update k8s-version --- .github/workflows/integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index d3660517fb72..06aefec85cc8 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -62,7 +62,7 @@ jobs: id: minikube uses: CodingNagger/minikube-setup-action@v1.0.6 with: - k8s-version: '1.19.16' + k8s-version: '1.23.0' - name: Launch Minikube run: eval ${{ steps.minikube.outputs.launcher }} - name: Check pods From 043d99c0bbf24be2c9b10ea3620e7fdfab9d3443 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Tue, 21 May 2024 16:47:03 +0100 Subject: [PATCH 2/2] Use official minikube GitHub action Cannot used the new default driver (`docker`) as it crashes the PostgreSQL Docker container started via job services. --- .github/workflows/integration.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 06aefec85cc8..aa3025ca6968 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -59,15 +59,12 @@ jobs: # ffmpeg: ffprobe needed by media datatypes run: sudo apt-get update && sudo apt-get -y install conntrack ffmpeg - name: Setup Minikube - id: minikube - uses: CodingNagger/minikube-setup-action@v1.0.6 + uses: medyagh/setup-minikube@latest with: - k8s-version: '1.23.0' - - name: Launch Minikube - run: eval ${{ steps.minikube.outputs.launcher }} + driver: none + kubernetes-version: '1.23.0' - name: Check pods - run: | - kubectl get pods + run: kubectl get pods -A - uses: actions/checkout@v3 with: path: 'galaxy root'