Skip to content

Commit 8cca486

Browse files
Migrate gsutil usage to gcloud storage (#13723)
1 parent e968580 commit 8cca486

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

functions/imagemagick/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Functions for your project.
2121

2222
1. Create a Cloud Storage Bucket:
2323

24-
gsutil mb gs://YOUR_INPUT_BUCKET_NAME
24+
gcloud storage buckets create gs://YOUR_INPUT_BUCKET_NAME
2525

2626
This storage bucket is used to upload images for the function to check.
2727

2828
1. Create a second Cloud Storage Bucket:
2929

30-
gsutil mb gs://YOUR_OUTPUT_BUCKET_NAME
30+
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME
3131

3232
This second storage bucket is used to store blurred images. (Un-blurred images will not be saved to this bucket.)
3333

functions/v2/imagemagick/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ Functions for your project.
2121

2222
1. Create a Cloud Storage Bucket:
2323

24-
gsutil mb gs://YOUR_INPUT_BUCKET_NAME
24+
gcloud storage buckets create gs://YOUR_INPUT_BUCKET_NAME
2525

2626
This storage bucket is used to upload images for the function to check.
2727

2828
1. Create a second Cloud Storage Bucket:
2929

30-
gsutil mb gs://YOUR_OUTPUT_BUCKET_NAME
30+
gcloud storage buckets create gs://YOUR_OUTPUT_BUCKET_NAME
3131

3232
This second storage bucket is used to store blurred images. (Images that are **not** blurred will not be saved to this bucket.)
3333

0 commit comments

Comments
 (0)