From 69e76dc74590b0182be59d57ff0c30b08b713dec Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Mon, 2 Mar 2026 12:03:55 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- README.md | 2 +- xmanager/cloud/auth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ab66bc..b38975d 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ to access Vertex AI to run jobs. ```bash export GOOGLE_CLOUD_BUCKET_NAME= - gsutil mb -l us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME + gcloud storage buckets create --location=us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME ``` Add `GOOGLE_CLOUD_BUCKET_NAME` to the environment variables or your .bashrc: diff --git a/xmanager/cloud/auth.py b/xmanager/cloud/auth.py index 595c8ef..b12b4e6 100644 --- a/xmanager/cloud/auth.py +++ b/xmanager/cloud/auth.py @@ -175,5 +175,5 @@ def get_bucket() -> str: '`export GOOGLE_CLOUD_BUCKET_NAME=`, ' 'replacing with a Google Cloud Storage bucket. ' 'You can create a bucket with ' - '`gsutil mb -l us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME`' + '`gcloud storage buckets create --location=us-central1 gs://$GOOGLE_CLOUD_BUCKET_NAME`' )