-
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
Add support for multiple --mountstring arguments to minikube start --mount
#12734
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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 understand the commands that are listed here. |
Welcome @mans0954! |
Hi @mans0954. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mans0954 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Can one of the admins verify this patch? |
Hoping that the CLA is signed now, but it was a confusing process. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @mans0954, thanks for creating this PR! While this is a helpful fix, you've only updated the mount code for Docker, and since you updated the flag from a string to string slice it's going to break the existing implementation for our VM drivers.
Here's a link to some of the VM mount code for reference, if you need any help let me know.
https://github.com/kubernetes/minikube/blob/master/pkg/minikube/node/config.go
Thanks for the feedback - it may be a little while before I have the time to look at this, so if someone else wants to jump in in the meantime, that's fine with me. |
55080d3
to
3459f20
Compare
|
The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
Hi @mans0954, are you still actively working on this PR? |
Not actively, no. I still think it would be a good improvement if someone else wanted to work on it. |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
no problem, I will close this PR please feel free to reopen whenever you feel ready or if anyone else wants to to pick this up |
fixes #12733
Previously
minikube start --mount
could be passed a--mount-string
argument which would create the minikube container with the specified host folder or docker volume mounted at the specified location (provided the minikube container did not already exist). e.g.would mount the
host_volume
docker volume at/mount_point
in the minikube container. If multiple--mount-string
arguments were provided, only the last would be used by minikube.This PR changes minikube so that multiple
--mount-string
arguments are supported. e.g.would mount the
host_volume1
docker volume at/mount_point1
in the minikube container andhost_volume2
at/mount_point2
.