将Google Cloud Run部署到免费层



Google将云运行的免费层定义为

2 million requests per month
360,000 GB-seconds of memory, 180,000 vCPU-seconds of compute time
1 GB network egress from North America per month

我使用gcloud-run-deploy部署了一个容器。

gcloud run deploy cgps-registration-2 
--platform managed 
--region us-central1 
--image gcr.io/cgps-registration-2/cgps-registration-2 
--add-cloudsql-instances cgps-registration-2:us-central1:cgps-reg-2-postgre-sql 

我可以在事后将其更改为免费等级吗?如果没有,我可以将参数传递给这个命令吗?这个命令将从一开始就在自由层建立它?

没有选择"自由层"的设置。在每个计费周期结束时,免费等级信用将应用于计费帐户。没有什么额外的事情可做。

最新更新