本文介绍了如何使用CLI命令在GCP中更改项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用 cli命令,而不是使用 Google Cloud Platform )帐户中的另一个项目手动> gcloud init 。
How can i change the current running project to another project in GCP (Google Cloud Platform) account using cli commands other than using gcloud init
manually.
$ gcloud项目列表
将列出我的帐户上正在运行的项目。我想使用cli命令将当前项目从列表更改为任何其他项目。
$gcloud projects list
will list the projects running on my account. I want to change the current project to any other project from the list using a cli command.
推荐答案
gcloud config set project my-project
您还可以设置环境变量 $ CLOUDSDK_CORE_PROJECT
。
You may also set the environment variable $CLOUDSDK_CORE_PROJECT
.
这篇关于如何使用CLI命令在GCP中更改项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!