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

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

Issue 1473383002: Moved Perf to systemd and also move to using tracedb. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years 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
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # Deletes the compute instance for skia-perf. 3 # Deletes the compute instance for skia-status.
tfarina 2015/11/26 21:01:17 skia-perf?
4 # 4 #
5 set -x 5 set -x
6 6
7 source vm_config.sh 7 source vm_config.sh
8 8
9 gcloud compute instances delete \ 9 gcloud compute instances delete \
10 --project=$PROJECT_ID \ 10 --project=$PROJECT_ID \
11 --delete-disks "all" \ 11 --delete-disks "boot" \
12 --zone=$ZONE \ 12 --zone=$ZONE \
13 $INSTANCE_NAME 13 $INSTANCE_NAME
14
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698