iam trying to deploy camunda on cloud run via google cloud sdk shell i followed the command as in this site https://medium.com/@ruslanfg/run-camunda-bpm-on-google-cloud-run-ecc59dc9fbc4 when i type last cmmand (gcloud beta run deploy --image gcr.io/camundacloud/camunda-demo --memory=1G) and then appear service name: I typed my service name camunda then error appear error not found requested entity was not found. please help .
0
votes
1 Answers
1
votes
I couldn't reproduce the error after following the instructions in the article you mentioned.
Please see my steps that lead to successful service deployment. If all steps are followed, you should be able to run Camunda BPM on Google Cloud Run without issues:
- Selected the required project with
gcloud config set project <your-project-id> - Enabled beta components with
sudo apt-get install google-cloud-sdk(alternatively, usegcloud components install betaas mentioned in the article you referenced) - Enabled Cloud Run -
gcloud services enable run.googleapis.com - Set default Cloud Run region -
gcloud config set run/region <desired region> gcloud beta run deploy --image gcr.io/camundacloud/camunda-demo --memory=1G
For the prompt
Service name: (camunda-bpm-platform):I enteredmycamundaAllow unauthenticated invocations to new service [mycamunda]? (y/N)?- selectedY