OLD | NEW |
---|---|
(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 | |
OLD | NEW |