I am using Django 1.7, Gunicorn and Nginx for my app. It is hosted on GCE VM instance.
I want to store all my user uploaded content in Google Cloud Storage, so that it is easily accessible in case the traffic increases and I have to use multiple VM instances behind a HTTP/Network load balancer.
Given that Google does not allow attaching a storage disk to multiple VM instances in write mode, Google Cloud Storage looks like the only option. I want to use Google Cloud Storage as a file system or something similar to that.
Please let me know if there are any other options.