I have a cloud run job, linked to cloud scheduler to run every Monday. Right now I am creating container images manually (by running commands in shell).
what are the ways to automate this so that whenever Cloud run picks as per schedule , it should take the latest image.
can we create any function which will create the new image ,based on any storage bucket trigger . or any other ways we can automate this image creation.
Hi @gcloudLearning!
You can look into Deploying to Cloud Run using Cloud Build. When using Cloud Build you can deploy from Artifact Registry to Cloud Run. You can deploy an existing image, build and deploy an image or automate the deployment using Continuous Deployment. You might also want to look into Building Container Images.
This material may also give you insights in building docker images automatically.
You can also get in touch with Google Cloud Support if the above option doesn't work.
Let me know if it helped, thanks!