Google Cloud Storage
Arraylake works great with Google Cloud Storage. You can use Google Cloud Storage as the storage location for your organization..
To use Google Cloud Storage with Arraylake:
-
Create a new bucket (Google Cloud docs). For example, the bucket could be named
my-arraylake-bucket
. -
Create a new
BucketConfig
to store the configuration for this bucket using either the Arraylake Python client or web app:
- Web App
- Python
from arraylake import Client
client = Client()
client.create_bucket_config(
org="earthmover",
nickname="my-google-bucket",
uri="gs://my-arraylake-bucket",
)
- Before using Arraylake, make sure you are logged in with valid credentials, e.g.
gcloud auth application-default login
That's it! You're ready to create a Repository! 🎉