无论何时运行Cloud Run服务onCloud Shell:
gcloud run deploy myapp --image gcr.io/myproject-1831713/myapp
我总是被要求输入一个Cloud Run区域如下所示:
请指定区域:
[1] asia-east1
[2] asia-east2
[3] asia-northeast1[4]亚洲-东北2
[5]亚洲-东北3
[6]亚洲-南1
[7]亚洲-南2
[8]亚洲-东南1
[9]亚洲-东南2
[10]澳大利亚-东南1
[11]澳大利亚-东南2
[12]欧洲-central2[13]欧洲-north1
[14]欧洲-west1
[15]欧洲-west2
[17]欧洲-west4
[18]欧洲-west6
[19]北美- northast1
[20]北美- northast2
[21]南美-west1
[23] us-central1
[24] us-east1
[25] us-east1
[26] us-west1
[27] us-west2
[28] us-west3[29] [footnoteref: 3] [br/>][30]李海涛请输入您的数字选择:
这样我就不会被要求输入一个Cloud Run区域当运行时,云运行服务onCloud Shell是否可以将设置为默认的云运行区域? 如果可能的话,我该怎么做?
可以将设置为默认的Cloud Run区域使用下面的命令,这样您就不会被要求输入一个Cloud Run区域当运行时,云运行服务onCloud Shell:
gcloud config set run/region <region>
因此,例如,运行下面的命令将设置为默认的Cloud run区域"asia-northeast ">:
gcloud config set run/region asia-northeast1
此外,您可以检查您的默认云运行区域使用下面的命令:
gcloud config get run/region
然后,结果如下:
你的激活配置是:[cloudshell-5343]asia-northeast1
并且,您可以检查所有配置,包括您的默认云运行区域使用下面的命令:
gcloud config list
然后,结果如下:
[accessibility]
screen_reader = True
[component_manager]
disable_update_check = True
[compute]
gce_metadata_read_timeout_sec = 30
[core]
account = myappdev0@gmail.com
disable_usage_reporting = True
project = myproject-383171
[metrics]
environment = devshell
[run]
region = asia- northast1你的激活配置是:[cloudshell-5343]
此外,您可以取消您的默认云运行区域使用下面的命令:
gcloud config unset run/region
然后,检查您的默认云运行区域:gcloud config get run/region
然后,结果如下:
你的激活配置是:[cloudshell-5343](复原)