From be93a1c6a3876d6cd017085168a77d887100f6a3 Mon Sep 17 00:00:00 2001 From: Jeff Grafton Date: Tue, 11 Oct 2016 16:52:09 -0700 Subject: [PATCH] gcloud compute instances list --zone -> --zones --- cluster/gce/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index aeb55ada2544..02730368f595 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -1315,7 +1315,7 @@ function kube-down() { function get-replica-name() { echo $(gcloud compute instances list \ --project "${PROJECT}" \ - --zone "${ZONE}" \ + --zones "${ZONE}" \ --regexp "$(get-replica-name-regexp)" \ --format "value(name)" | head -n1) }