-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failure when trying to scp files into Minikube VM #2678
Comments
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Stale issues rot after 30d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
Rotten issues close after 30d of inactivity. Send feedback to sig-testing, kubernetes/test-infra and/or fejta. |
@fejta-bot: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
I have this exact same problem. I need to move docker images onto the VM as part of an installation process. The images are about 5GB in total, and when I try to move them using .minikube/files, or scp I get the same symptoms. We are moving other files using the .minikube/files technique, so my guess is that it is a size issue. |
/reopen |
@pbaker7: You can't reopen an issue/PR unless you authored it or you are a collaborator. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/remove-lifecycle rotten |
@pbaker7 - Do you mind opening a new issue that mentions this one? I suspect you may actually have a different environment from the original author here. I can always de-dupe it if not. |
any resolutions for this? i am also facing the same issue |
Is this a BUG REPORT or FEATURE REQUEST? (choose one):
A Bug report
Environment:
Minikube version (use
minikube version
): v0.25.2cat ~/.minikube/machines/minikube/config.json | grep DriverName
): virtualboxcat ~/.minikube/machines/minikube/config.json | grep -i ISO
orminikube ssh cat /etc/VERSION
): v0.25.1What happened:
I am using the defined version of Minikube in the defined environment.
It is required for me to upload a tarfile (produced using
docker save
of certain Docker images) into the Minikube VM. Hence, I attempted the following two methods:scp
command manually.I tried using the following
scp -i $(minikube ssh-key) <tarfile> docker@$(minikube ip):/home/docker
.This attempt failed with a
packet_write_wait: Connection to 192.168.99.100 port 22: Broken pipe lost connection
error.~/.minikube/files
folder as defined, here.This attempt also fails as follows:
Note:
I have setup a
~/.ssh/config
file with following content:What you expected to happen: Successfully upload the tarfile from my local machine into the Minikube VM.
How to reproduce it (as minimally and precisely as possible): Follow steps defined in two methods under What happened section.
Anything else do we need to know:
If the steps I'm following are incorrect, please direct to the correct steps in achieving the above.
The text was updated successfully, but these errors were encountered: