Skip to content

Commit daa7fd2

Browse files
committed
Use docker driver for minikube installation test.
Something changed (either in a new minikube version or the runner bump to Ubuntu 20) and minikube isn't honoring the vm-driver=none config. I'm guessing that it has something to do with running minikube start with sudo but minikube config without. This test now uses the newer docker driver in an effort to sidestep the issue completely. Signed-off-by: Ben Luddy <[email protected]>
1 parent 6203a8e commit daa7fd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test-scripts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
curl -sLo minikube "$(curl -sL https://api.github.com/repos/kubernetes/minikube/releases/latest | jq -r '[.assets[] | select(.name == "minikube-linux-amd64")] | first | .browser_download_url')"
2929
chmod +x minikube
3030
sudo mv minikube /bin/
31-
minikube config set vm-driver none
32-
sudo make run-local # vm-driver=none requires root
31+
minikube config set vm-driver docker
32+
make run-local
3333
run-local-kind:
3434
runs-on: ubuntu-latest
3535
steps:

0 commit comments

Comments
 (0)