Search code examples
google-cloud-platformgoogle-cloud-rungoogle-artifact-registry

Deploy a container to Cloud Run after pushing to Artifact Registry automaticlly


I want to setup a connection (without writing code) between Google Cloud Artifact Registry and Cloud Run. So on every push, I want to create/update a service on Cloud Run with the same name.

Is this possible?


Solution

  • No, you can't. The system that push the image must just after trigger the deployment of a new Cloud Run revision, with the new image. the latest tag if you want.

    Nothing automatic is possible on a push event on Artifact registry.