Skip to content

Commit b7ef6fd

Browse files
Merge pull request #1586 from metal3-io-bot/cherry-pick-1572-to-release-0.5
[release-0.5] 🌱 E2E: Workaround issue with minikube image load
2 parents 61a5e39 + c5d9169 commit b7ef6fd

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)