Cloud Storage
Connecting to GCP Cloud Storage from a DevZero workspace.
If you're more of a visual learner, check out the video tutorial!
Architecture Diagram
Existing Cloud Storage
Connecting to GCP Cloud Storage
- Go to your DevBox and install Gcloud SDK:
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates gnupg curl
sudo apt-get update && sudo apt-get install google-cloud-cli
- Authenticate your GCP account with Gcloud SDK:
gcloud init
- Access your cloud storage list by:
gsutil ls gs://<storage-name>
New Cloud Storage Bucket
Step 1: Creating a storage bucket
- Go to Cloud Storage > Buckets.
- Click on Create.
- Enter a unique name for the bucket and click on Create.
Step 2: Accessing the storage bucket from Devbox
- Go to your DevBox and install Gcloud SDK:
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates gnupg curl
sudo apt-get update && sudo apt-get install google-cloud-cli
- Authenticate your GCP account with Gcloud SDK:
gcloud init
- Access your cloud storage list by:
gsutil ls gs://<storage-name>