Skip to content

Commit

Permalink
remove a redundant project_id setting in a gcloud command
Browse files Browse the repository at this point in the history
  • Loading branch information
gargnitingoogle committed Sep 18, 2024
1 parent fae35c5 commit b92fa47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ function ensureGkeCluster() {
fi
gcloud container clusters update ${cluster_name} --project=${project_id} --location=${zone} --workload-pool=${project_id}.svc.id.goog
else
gcloud container --project "${project_id}" clusters create ${cluster_name} --project=${project_id} --zone "${zone}" --workload-pool=${project_id}.svc.id.goog --machine-type "${machine_type}" --image-type "COS_CONTAINERD" --num-nodes ${num_nodes} --ephemeral-storage-local-ssd count=${num_ssd}
gcloud container clusters create ${cluster_name} --project=${project_id} --zone "${zone}" --workload-pool=${project_id}.svc.id.goog --machine-type "${machine_type}" --image-type "COS_CONTAINERD" --num-nodes ${num_nodes} --ephemeral-storage-local-ssd count=${num_ssd}
fi
}
Expand Down

0 comments on commit b92fa47

Please sign in to comment.