From 77ed1e70df34c2441e8c730196df509ce1343858 Mon Sep 17 00:00:00 2001 From: bhandarivijay Date: Tue, 6 Jan 2026 15:22:05 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- gce/makeProject | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gce/makeProject b/gce/makeProject index 97a02b767..456710245 100755 --- a/gce/makeProject +++ b/gce/makeProject @@ -46,7 +46,7 @@ function print_usage() { echo "deploying the hello-world app. You may add all your configuration here, so you don't need" echo "to change them in every version of this application." echo "" - echo "gce - mvn package; gsutil cp; gcloud compute instances create ...; - deploys to Compute Engine" + echo "gce - mvn package; gcloud storage cp; gcloud compute instances create ...; - deploys to Compute Engine" echo "down - tears down a single instance group" echo "gce-many - deploys a managed instance group" echo "down-many- tears down a managed instance group" @@ -81,7 +81,7 @@ gce) # [START getting_started_gce_single] mvn clean package - gsutil cp -r target/${WAR} config/base gs://${BUCKET}/gce/ + gcloud storage cp --recursive target/${WAR} config/base gs://${BUCKET}/gce/ gcloud compute firewall-rules create allow-http-hello-world \ --allow tcp:80 \