From ee6e92473d24c30417f49ca261fa7c436551fc48 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 0edf9f9c095..45ba2aad0ec 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -1385,7 +1385,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) }