Skip to content

Commit

Permalink
E2E: Workaround issue with minikube image load
Browse files Browse the repository at this point in the history
There is a bug in the new docker release that affects minikube image
load. While we wait for a new minikube release, we can work around the
issue by exporting the image to an archive and load it from there
instead.

Signed-off-by: Lennart Jern <[email protected]>
  • Loading branch information
lentzi90 committed Mar 1, 2024
1 parent 1636b4e commit c57bd1d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hack/ci-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ 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

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

0 comments on commit c57bd1d

Please sign in to comment.