Skip to content

Commit

Permalink
Merge pull request #1983 from Nordix/kashif/fix-minikube-restart
Browse files Browse the repository at this point in the history
🌱 Fix minikube restart in e2e by trying in a loop
  • Loading branch information
metal3-io-bot authored Oct 9, 2024
2 parents a32e289 + 444c7d0 commit f395206
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hack/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ virsh -c qemu:///system attach-interface --domain minikube --mac="52:54:00:6c:3c

# Restart minikube to apply the changes
minikube stop
minikube start
## Following loop is to avoid minikube restart issue
## https://github.com/kubernetes/minikube/issues/14456
while ! minikube start; do sleep 30; done

# Load the BMO e2e image into it
# minikube image load quay.io/metal3-io/baremetal-operator:e2e
Expand Down

0 comments on commit f395206

Please sign in to comment.