Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 | |
| OLD | NEW |