Sign in
skia
/
buildbot
/
aa61950bfba5fe2cc5afe029c0ec5b3adc6ed001
/
.
/
compute_engine_scripts
/
skfe
/
vm_delete_instance.sh
blob: be35ccfa94359c1553c48ef052f55591eb98d263 [
file
]
#!/bin/bash
#
# Deletes the compute instance for skia-docs.
#
set
-
x
source vm_config
.
sh
for
NUM
in
$
(
seq
1
$NUM_INSTANCES
);
do
gcloud compute instances delete \
--
project
=
$PROJECT_ID \
--
delete
-
disks
"all"
\
--
zone
=
$ZONE \
$INSTANCE_NAME
-
$NUM
done