Questions tagged as ['gcsfuse']
gcsfuse is a user-space file system for interacting with Google Cloud Storage.
Score: 1

Confused about how to manipulate GCS bucket/object permissions
On my laptop I have a directory which contains a subdirectory, which in turn contains a bunch of HTML files. It looks like this:
% ls -lR 2000-09
2000-09:
total 12
drwxrwxr-x 2 skip skip 12288 Nov 18 07:42 html
2000-09/html:
total 648
-rw-r--r-- 1 skip skip 18489 Dec 4 2019 index.html
-rw-r--r-- 1 skip skip 18489 Dec 4 2019 maillist.html
-rw-r--r-- 1 skip skip 3468 Dec 4 2019 msg00000.html
...
Score: 0

Bucket mounted using gcsfuse doesn't match what's in my cloud storage bucket
I have a Google Cloud Storage bucket and am experimenting with creating a website in Google Cloud Platform (using Python+Flask FWIW). For my initial experiment, I'm using gcsfuse to mount my GCS bucket as a filesystem:
https://github.com/GoogleCloudPlatform/gcsfuse
Following the directions I got it installed in my cloud shell and mounted it like so:
mkdir -p ~/mnt
gcsfuse <my-bucket> ~/mnt
Thi ...