Skip to content

Commit

Permalink
mk: Use docker driver on Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
bbusse committed Jan 11, 2024
1 parent 628718b commit a9a9ff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup-cluster
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ fi
if ! $(minikube status) or $(minikube status | grep Nonexistent\|Stopped); then
printf 'minikube is not running\nStarting minikube..'
if (( 0=="${VERBOSE}" )); then
minikube start --driver=podman
minikube start --driver="${minikube_driver}"
else
minikube start --driver=podman --alsologtostderr -v=7
minikube start --driver="${minikube_driver}" --alsologtostderr -v=7
fi
else
printf 'minikube is already running\n'
Expand Down

0 comments on commit a9a9ff6

Please sign in to comment.