-
Notifications
You must be signed in to change notification settings - Fork 254
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
Config options for directory sharing #3310
Comments
you can not use a single option for a share. each share can have it's own set of variables.
See for example minishift/minishift@e05dbec from Minishift where I implemented the CIFS mount of shares. hostfolder := HostFolder{
Name: "Users",
Type: "cifs",
Options: map[string]string{
"mountpoint": "",
"uncpath": "//127.0.0.1/Users",
"username": "[email protected]",
"password": "am!g@4ever",
"domain": "DESKTOP-RHAIMSWIN",
},
} |
for CRC these options doesn't need to be configurable as we want to provide the user the same behaviour as so,
We just want the |
if you aren't considering using hostfolders other than from 127.0.0.1 |
right, only considering the local use case for now, for a remote like scenario |
you however have to take into account to use similar, if not same, configuration/command line options to achieve this. you can not just easily change them once released. and you can have another set of commands to deal with another type, this is confusing. |
If we add a config since we are not adding a config for |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
enable-shared-dirs
this was added to toggle the automounting of shared directories during start.
for windows CIFS/SMB file sharing we need the user's login credentials to mount the shared directory, which creates the need for another config option
smb-share-password
when we add support for
sshfs
we need another config option to allow users to use thesshfs
based file sharing instead of the platform default methoduse-rsshfs-dir-share
The text was updated successfully, but these errors were encountered: