未找到 gcloud beta run deploy 上的错误

问题描述

我试图通过谷歌云 sdk shell 在云上部署 camunda 我按照本网站中的命令https://medium.com/@ruslanfg/run-camunda-bpm-on-google-cloud-run-ecc59dc9fbc4 当我输入最后一个命令时 (gcloud beta run deploy --image gcr.io/camundacloud/camunda-demo --memory=1G) 然后出现服务名称:然后我输入了我的服务名称camunda 错误出现错误未找到请求的实体未找到。 请帮忙。

解决方法

按照您提到的 article 中的说明操作后,我无法重现该错误。

请查看我成功部署服务的步骤。如果遵循所有步骤,您应该能够在 Google Cloud Run 上运行 Camunda BPM,而不会出现问题:

  1. 使用 gcloud config set project <your-project-id> 选择所需的项目
  2. 使用 sudo apt-get install google-cloud-sdk 启用 Beta 组件(或者,使用您引用的文章中提到的 gcloud components install beta
  3. 启用 Cloud Run - gcloud services enable run.googleapis.com
  4. 设置默认 Cloud Run 区域 - gcloud config set run/region <desired region>
  5. gcloud beta run deploy --image gcr.io/camundacloud/camunda-demo --memory=1G
  • 对于提示 Service name: (camunda-bpm-platform): 我输入了 mycamunda

  • Allow unauthenticated invocations to new service [mycamunda]? (y/N)? - 选中 Y