I'm sorry, I still don't understand the relation of the question to GKE. In my understanding the original question refers to blobstore (
https://cloud.google.com/appengine/docs/standard/python/blobstore/) which is a deprecated/legacy storage solution that is only available inside of Google AppEngine v1 (so not even AppEngine v2 and definitely not outside of AppEngine like GKE, Compute, etc).
Code outside of AppEngine can interact with Blobstore since it uses Cloud Storage (so for an outside client it is just like Cloud Storage), but can't use it (for example they can't call the "create_upload_url" method). There is similar functionality in GCS (signed URLs for upload:
https://cloud.google.com/storage/docs/access-control/signed-urls) but blobstore itself is an "AppEngine v1" technology (of course clients uploading/downloading from blobstore can be anywhere as long as they speak HTTP(S)).
Attila