codefx
codefx

Reputation: 10502

Can I mount a GCS bucket inside Kubernetes Pod?

I know that Kubernetes does not support mounting GCS buckets inside a Pod. But If I use GoogleFuse to mount a GCS bucket on the Node and then expose it to a Pod as a host path will that work?

Upvotes: 4

Views: 1060

Answers (1)

Vishnu Kannan
Vishnu Kannan

Reputation: 449

It should work. For Host Path volumes, kube doesn't enforce any policy. But if your FUSE daemon restarts, the mount will become inaccessible. AFAIK, kube does not support mount propagation for volumes.

Upvotes: 2

Related Questions