Skip to content

Commit

Permalink
Fixes a static reference to a GCP project. (#324)
Browse files Browse the repository at this point in the history
* Fixes a static reference to a GCP project.
  • Loading branch information
nkinkade authored Nov 28, 2019
1 parent 87c9ad3 commit 41a1776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage-cluster/upgrade_k8s_cloud_nodes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ set -x
for node in $NODES; do
# Determine the zone of the node.
ZONE=$(gcloud compute instances list --filter "name=${node}" \
--project mlab-sandbox \
--project ${PROJECT} \
--format "value(zone)")
# Ssh to the node, update all the k8s binaries.
gcloud compute ssh "${node}" --project "${PROJECT}" --zone "${ZONE}" <<EOF
Expand Down

0 comments on commit 41a1776

Please sign in to comment.