Skip to content

Commit c5d9169

Browse files
lentzi90metal3-io-bot
authored andcommitted
E2E: Workaround issue with minikube image load
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 <lennart.jern@est.tech>
1 parent 61a5e39 commit c5d9169

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

hack/ci-e2e.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ minikube stop
4343
minikube start
4444

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

4852
# Create libvirt domain
4953
VM_NAME="bmo-e2e-0"

0 commit comments

Comments
 (0)