Commit 455a787c authored by Brendan Burns's avatar Brendan Burns

Add a missing $PROJECT to the tear down.

parent 52db5766
...@@ -738,7 +738,7 @@ function kube-down { ...@@ -738,7 +738,7 @@ function kube-down {
# The gcloud APIs don't return machine parsable error codes/retry information. Therefore the best we can # The gcloud APIs don't return machine parsable error codes/retry information. Therefore the best we can
# do is parse the output and special case particular responses we are interested in. # do is parse the output and special case particular responses we are interested in.
if gcloud preview managed-instance-groups --zone "${ZONE}" describe "${NODE_INSTANCE_PREFIX}-group" &>/dev/null; then if gcloud preview managed-instance-groups --project "${PROJECT}" --zone "${ZONE}" describe "${NODE_INSTANCE_PREFIX}-group" &>/dev/null; then
deleteCmdOutput=$(gcloud preview managed-instance-groups --zone "${ZONE}" delete \ deleteCmdOutput=$(gcloud preview managed-instance-groups --zone "${ZONE}" delete \
--project "${PROJECT}" \ --project "${PROJECT}" \
--quiet \ --quiet \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment