I want to mount a GCP bucket on a ubuntu machine that allows user to upload files, and keep the file's ownership to the user.
Currently, I have this line in my /etc/fstab:
gcp-bucket-name /mnt/gcp-bucket-action gcsfuse rw,allow_other,file_mode=0666,dir_mode=0777
Gcp-bucket-name is my GCP bucket, and /mnt/gcp-bucket-action is the mount point.
It does allow regular users to access /mnt/gcp-bucket-action and create and delete files/dirs, but the files/dirs are owned by "root".
What do I need to change so that the user ownership will be kept on the files/dirs they created.
Thanks, Philip