From 659450c2fa92831266105ec4e875369429ce0f47 Mon Sep 17 00:00:00 2001 From: vankichi Date: Fri, 29 Nov 2024 18:01:24 +0900 Subject: [PATCH] :green_heart: Use QEMU on e2e with minikube Signed-off-by: vankichi --- .github/actions/setup-e2e/action.yaml | 3 +++ Makefile | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.github/actions/setup-e2e/action.yaml b/.github/actions/setup-e2e/action.yaml index 6cf17458096..2a4f7483de0 100644 --- a/.github/actions/setup-e2e/action.yaml +++ b/.github/actions/setup-e2e/action.yaml @@ -89,6 +89,9 @@ runs: if: ${{ inputs.require_minikube == 'true' }} shell: bash run: | + # TODO: consider use apt install for ci + # Add Docker's official GPG key: + which docker make minikube/install make minikube/start - name: Check Kubernetes cluster diff --git a/Makefile b/Makefile index de1572c19e8..a7374025272 100644 --- a/Makefile +++ b/Makefile @@ -373,6 +373,8 @@ E2E_REMOVE_FROM ?= 0 TEST_RESULT_DIR ?= /tmp +MINIKUBE_DRIVER = none + include Makefile.d/functions.mk .PHONY: maintainer