-
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
start should support --mount-string argument #3327
Comments
Hi, |
yes pls! |
In version 0.35 is see log |
bump! this would be extremely useful, especially for the ephemeral minikube clusters i have to spin up for the apache spark k8s integration tests. the only way i can get the PV to mount correctly is with a separate our build script looks kinda like this:
being able to pass in the additional mount args (gid, 9p-version, etc) directly through the |
@shaneknapp - Agreed. I'd happily review any PR which makes the above happen. |
I SEE WHAT YOU DID THERE! |
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. |
/remove-lifecycle stale |
@tstromberg interested to tackle this issue. Would you be able to point me in the right direction to start. So far I can see that the mount command code is inside mount.go but at high level what does the new code required to do ? Thanks |
/assign |
I'll just add our use case for traction I suppose as we need this fix urgently. Because the data is stored on my Mac and mounted into the pod, it has root:root on the data folder which is making it impossible for me do anything with it after mounting it, of course the postgres can't load it properly as well, I'd need to mount the folder with 999:999 or something like that. Seems if the above issue is fixed, my issue will be fixed as well, in the meanwhile I'm looking for ways to bypass it as we're blocked :( |
@nanikjava still interested in working on this? |
Going to unassign myself for now, as trying to work on another ticket. |
/assign |
I started working on this issue, but the folder is not getting mounted after running command - |
Any updates? |
@Divya063, @zamazan4ik i cannot reproduce the issue on the latest version (1.17.1 atm) with docker - ie, this worked for me:
|
/close |
@prezha: You can't close an active 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. |
|
@lacarvalho91 you are correct that we don't support passing |
@spowelljr yeah I'm doing that now, would be awesome to be able to do it on start though! |
yep, agree -- it'd be great if we could pass these args in @ startup...
…On Wed, Oct 27, 2021 at 12:29 PM Lawrence Carvalho ***@***.***> wrote:
@spowelljr <https://github.com/spowelljr> yeah I'm doing that now, would
be awesome to be able to do it on start though!
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3327 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAMIHLEFJFVXMGR54TXBUATUJBOI7ANCNFSM4GDGMXNQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
I created an issue to track this request, I might have time to implement this next month and be included with minikube v1.25 release. |
FEATURE REQUEST
Environment:
Minikube version: v0.30.0
We have a well scripted process for spinning up our stack, currently it uses NFS shares.
We are looking to refactor this to use the
minikube start --mount --mount-string "/blah:/blah"
We are struggling to get write access to the mount-point via this method.
We have tested with
minikube mount
with the--9p-version=9p2000.L
and this gives us write access.During
minikube start
we would like to make use of the--9p-version
flag as per theminikube mount
.seems some similar discussion was taking place on this issue: #2290
The text was updated successfully, but these errors were encountered: