You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/12/07 16:47:41 UTC

[geode-benchmarks] branch develop updated: Don't prompt for input when destroying GCP cluster

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-benchmarks.git


The following commit(s) were added to refs/heads/develop by this push:
     new fc91b8c  Don't prompt for input when destroying GCP cluster
fc91b8c is described below

commit fc91b8c1e38fd6b01c84ab590739c442d35f93b3
Author: Dan Smith <up...@apache.org>
AuthorDate: Fri Dec 7 08:46:54 2018 -0800

    Don't prompt for input when destroying GCP cluster
---
 infrastructure/google_cloud/destroy_cluster.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure/google_cloud/destroy_cluster.sh b/infrastructure/google_cloud/destroy_cluster.sh
index 7247107..732260b 100755
--- a/infrastructure/google_cloud/destroy_cluster.sh
+++ b/infrastructure/google_cloud/destroy_cluster.sh
@@ -24,5 +24,5 @@ NODE_GROUP="${PREFIX}-node-group"
 
 gcloud compute instance-groups managed delete ${PREFIX} --quiet
 gcloud compute instance-templates delete ${PREFIX}-template --quiet
-gcloud compute sole-tenancy node-groups delete ${NODE_GROUP}
-gcloud compute sole-tenancy node-templates delete ${NODE_TEMPLATE}
\ No newline at end of file
+gcloud compute sole-tenancy node-groups delete ${NODE_GROUP} --quiet
+gcloud compute sole-tenancy node-templates delete ${NODE_TEMPLATE} --quiet