Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions gce/makeProject
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 \
Expand Down