We can mount Google Cloud Storage Bucket as a disk to an instance using Cloud FUSE. By doing so, we are getting 1 PiB as disk size(bucket). Can anybody help me understand why we are getting 1 PiB specifically? Can we modify this size while mounting? and how to automount this disk(bucket) with overridden permissions, i.e what should be the entry in /etc/fstab
. I have changed the default directory permission(755) and file permission(644) to 770 and 666 respectively using -
mount -t gcsfuse -o allow_other -o dir_mode=770 -o file_mode=666 bucketname /path/to/mountpoint/
Thanks in advance.