-
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
minikube scp #9930
Comments
This feature is available in docker-machine, so we should probably make it available in minikube as well. |
The turbo-charged version also has support for |
Like you mention, this use case should be supported by minikube (or docker) directly... See also #4868 |
I would like to work on this if there is no objection. |
Sure, please do a PR. The original code is in: https://github.com/docker/machine/blob/master/commands/scp.go But minikube is different... It would be OK to call out to the external programs for "scp" and for "rsync", at least initially. |
I too would love to see this get implemented. |
/assign |
Is there any progress on this issue? @arjunagl |
@anencore94 please go ahead. I got a bit stuck with some other stuff. |
/unassign |
Thanks for your answer @arjunagl :) |
🎊 🎉 🚀 |
It would be nice to be able to have
minikube scp
likeminikube ssh
, to copy files in the the minikube node. An use case would be: copying Dockerfiles to the node to build custom docker images for Kubernetes.In the meantime, for all of you that want this feature, here's a workaround:
edit: you can also use
minikube docker-env
to set up thedocker
client to point to minikube's docker daemon, and build the image locally. However, this still doesn't work for copying files...The text was updated successfully, but these errors were encountered: