From 0f18d020d58a84ba327ebddd13283f8e239bf823 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Thu, 8 Jan 2026 12:30:16 +0000 Subject: [PATCH 1/4] chore: Migrate gsutil usage to gcloud storage --- appengine/storage/flexible/README.md | 4 ++-- appengine/storage/flexible_nodejs16_and_earlier/README.md | 4 ++-- appengine/storage/standard/README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/appengine/storage/flexible/README.md b/appengine/storage/flexible/README.md index de65b02ee3..dcd35dc9f3 100644 --- a/appengine/storage/flexible/README.md +++ b/appengine/storage/flexible/README.md @@ -12,13 +12,13 @@ Before you can run or deploy the sample, you will need to do the following: 1. Create a Cloud Storage Bucket. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil mb gs:// + gcloud storage buckets create gs:// 1. Set the default ACL on your bucket to public read in order to serve files directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil defacl set public-read gs:// + gcloud storage buckets update gs:// --predefined-default-object-acl=public-read 1. Update the environment variables in `app.yaml`. diff --git a/appengine/storage/flexible_nodejs16_and_earlier/README.md b/appengine/storage/flexible_nodejs16_and_earlier/README.md index de65b02ee3..dcd35dc9f3 100644 --- a/appengine/storage/flexible_nodejs16_and_earlier/README.md +++ b/appengine/storage/flexible_nodejs16_and_earlier/README.md @@ -12,13 +12,13 @@ Before you can run or deploy the sample, you will need to do the following: 1. Create a Cloud Storage Bucket. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil mb gs:// + gcloud storage buckets create gs:// 1. Set the default ACL on your bucket to public read in order to serve files directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil defacl set public-read gs:// + gcloud storage buckets update gs:// --predefined-default-object-acl=public-read 1. Update the environment variables in `app.yaml`. diff --git a/appengine/storage/standard/README.md b/appengine/storage/standard/README.md index 784d5eebea..2f698e64c5 100644 --- a/appengine/storage/standard/README.md +++ b/appengine/storage/standard/README.md @@ -12,13 +12,13 @@ Before you can run or deploy the sample, you will need to do the following: 1. Create a Cloud Storage Bucket. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil mb gs:// + gcloud storage buckets create gs:// 1. Set the default ACL on your bucket to public read in order to serve files directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gsutil defacl set public-read gs:// + gcloud storage buckets update --predefined-default-object-acl=public-read gs:// 1. Update the environment variables in `app.yaml`. From 837fe19699f4aa403b7f4825f4463724f7bd8860 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Thu, 8 Jan 2026 18:13:36 +0530 Subject: [PATCH 2/4] Update README.md --- appengine/storage/flexible/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/storage/flexible/README.md b/appengine/storage/flexible/README.md index dcd35dc9f3..771f214895 100644 --- a/appengine/storage/flexible/README.md +++ b/appengine/storage/flexible/README.md @@ -18,7 +18,7 @@ with the following command: directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gcloud storage buckets update gs:// --predefined-default-object-acl=public-read + gcloud storage buckets update gs:// --predefined-default-object-acl=publicRead 1. Update the environment variables in `app.yaml`. From bf88241a8ab98cea1af95d5a456fa6f9fdc18ff2 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Thu, 8 Jan 2026 18:14:02 +0530 Subject: [PATCH 3/4] Update README.md --- appengine/storage/flexible_nodejs16_and_earlier/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/storage/flexible_nodejs16_and_earlier/README.md b/appengine/storage/flexible_nodejs16_and_earlier/README.md index dcd35dc9f3..771f214895 100644 --- a/appengine/storage/flexible_nodejs16_and_earlier/README.md +++ b/appengine/storage/flexible_nodejs16_and_earlier/README.md @@ -18,7 +18,7 @@ with the following command: directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gcloud storage buckets update gs:// --predefined-default-object-acl=public-read + gcloud storage buckets update gs:// --predefined-default-object-acl=publicRead 1. Update the environment variables in `app.yaml`. From ac4a7a5998e35ad42d1df99d38db87585bff7f82 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Thu, 8 Jan 2026 18:14:23 +0530 Subject: [PATCH 4/4] Update README.md --- appengine/storage/standard/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appengine/storage/standard/README.md b/appengine/storage/standard/README.md index 2f698e64c5..9e2c63c220 100644 --- a/appengine/storage/standard/README.md +++ b/appengine/storage/standard/README.md @@ -18,7 +18,7 @@ with the following command: directly from Cloud Storage. You can do this with the [Google Cloud SDK](https://cloud.google.com/sdk) with the following command: - gcloud storage buckets update --predefined-default-object-acl=public-read gs:// + gcloud storage buckets update --predefined-default-object-acl=publicRead gs:// 1. Update the environment variables in `app.yaml`.