Skip to content
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

Open
anjannath opened this issue Aug 23, 2022 · 7 comments
Open

Config options for directory sharing #3310

anjannath opened this issue Aug 23, 2022 · 7 comments
Labels
kind/task Workable task status/pinned Prevents the stale bot from closing the issue

Comments

@anjannath
Copy link
Member

  • 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 the sshfs based file sharing instead of the platform default method

  • use-rsshfs-dir-share
@anjannath anjannath added kind/bug Something isn't working status/need triage kind/task Workable task and removed kind/bug Something isn't working status/need triage labels Aug 23, 2022
@gbraad
Copy link
Contributor

gbraad commented Aug 23, 2022

you can not use a single option for a share. each share can have it's own set of variables.

host path, mount path, type, options/password


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",
		},
	}

@anjannath
Copy link
Member Author

you can not use a single option for a share. each share can have it's own set of variables.

host path, mount path, type, options/password

for CRC these options doesn't need to be configurable as we want to provide the user the same behaviour as podman does, i.e mount the user's home directory in the vm at /home/$username or in case of windows at /mnt/c/users/$username

so,

  • the host_path in our case is always going to be the user's home folder
  • mount path defaults to /mnt/c/user/$username
  • options passed with -o for mounting should be internal and user doesn't need to think or configure these

We just want the password to be configurable and only for CIFS so the smb-share-password config will only exist on windows

@gbraad
Copy link
Contributor

gbraad commented Aug 23, 2022

for mounting should be internal and user doesn't need to think or configure these

if you aren't considering using hostfolders other than from 127.0.0.1

@anjannath
Copy link
Member Author

right, only considering the local use case for now, for a remote like scenario sshfs would be better

@gbraad
Copy link
Contributor

gbraad commented Aug 23, 2022

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.

@anjannath
Copy link
Member Author

If we add a config smb-share-password now for CIFS based share, we can add a similar sshfs-share-password later for the sshfs base share, or are you suggesting to use a generic config, e.g share-password

since we are not adding a config for Source Path and Target Path now for CIFS, we can defer the decision regarding these config's names a bit.

@stale
Copy link

stale bot commented Oct 29, 2022

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.

@stale stale bot added the status/stale Issue went stale; did not receive attention or no reply from the OP label Oct 29, 2022
@anjannath anjannath added status/pinned Prevents the stale bot from closing the issue and removed status/stale Issue went stale; did not receive attention or no reply from the OP labels Aug 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/task Workable task status/pinned Prevents the stale bot from closing the issue
Projects
None yet
Development

No branches or pull requests

2 participants