TimZaman / dotaclient

distributed RL spaghetti al arabiata
26 stars 7 forks source link

GCS Setup #12

Closed Nostrademous closed 5 years ago

Nostrademous commented 5 years ago

So I created a GCS account and tested that my authentication key is valid and I can retrieve my bucket list.

>>> def implicit():
...     from google.cloud import storage
...     storage_client = storage.Client()
...     buckets = list(storage_client.list_buckets())
...     print(buckets)
... 
>>> implicit()
[<Bucket: pydota2>]
>>> quit()

What changes and where do I need to make to run using the distributed K8s setup? Any help you can offer in terms of directions or direct answer would probably save me tons of time.

Thanks