Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(611)

Side by Side Diff: compute_engine_scripts/skfe/vm_delete_instance.sh

Issue 819473004: Set up the nginx servers for handling *.skia.org traffic. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/bash
2 #
3 # Deletes the compute instance for skia-docs.
4 #
5 set -x
6
7 source vm_config.sh
8
9 for NUM in $(seq 1 $NUM_INSTANCES); do
10
11 gcloud compute instances delete \
12 --project=$PROJECT_ID \
13 --delete-disks "all" \
14 --zone=$ZONE \
15 $INSTANCE_NAME-$NUM
16
17 done
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698