From fce1892115ceff02e64f49583f0a6c0cc46239a8 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 12 Oct 2022 10:30:17 +0200 Subject: [PATCH] ci: copy images into minikube container when `VM_DRIVER=podman` Even when minikube is running with `--driver=podman`, `minikube ssh` works and container images can be copied into the minikube container. Signed-off-by: Niels de Vos --- podman2minikube.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/podman2minikube.sh b/podman2minikube.sh index d0a697cea..750d9bf08 100755 --- a/podman2minikube.sh +++ b/podman2minikube.sh @@ -7,8 +7,8 @@ # well. # -# no need to ssh-copy images if there is no VM -if [[ "${VM_DRIVER}" == "none" ]] || [[ "${VM_DRIVER}" == "podman" ]] +# no need to ssh-copy images if everything runs local +if [[ "${VM_DRIVER}" == "none" ]] then exit 0 fi