Skip to content

Commit

Permalink
Merge pull request #1572 from Nordix/lentzi90/e2e-minikube-load
Browse files Browse the repository at this point in the history
🌱 E2E: Workaround issue with minikube image load
  • Loading branch information
metal3-io-bot authored Mar 1, 2024
2 parents 1636b4e + 0233902 commit b5c4120
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hack/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ minikube stop
minikube start

# Load the BMO e2e image into it
minikube image load quay.io/metal3-io/baremetal-operator:e2e
# minikube image load quay.io/metal3-io/baremetal-operator:e2e
# Temporary workaround for https://github.com/kubernetes/minikube/issues/18021
docker image save -o /tmp/bmo-e2e.tar quay.io/metal3-io/baremetal-operator:e2e
minikube image load /tmp/bmo-e2e.tar
rm /tmp/bmo-e2e.tar

# This IP is defined by the network we created above.
IP_ADDRESS="192.168.222.1"
Expand Down

0 comments on commit b5c4120

Please sign in to comment.