DEV Community

Cover image for From 0 to working Serverless URL for a Containerized app with Google Cloud Run [Slides and Video]
Geshan Manandhar
Geshan Manandhar

Posted on • Updated on • Originally published at geshan.com.np

From 0 to working Serverless URL for a Containerized app with Google Cloud Run [Slides and Video]

What is the fastest way to get a working URL for your stateless container in a serverless way? With 0 doubts it is Google Cloud Run. Containers and Docker are far more popular than Serverless if we look at Google Trends, still there is a meeting point for both these technologies and Cloud Run does a great job to make it super easy to deploy serverless containers in minutes. This post details about a talk I gave at Serverless Days Sydney 2019 about serverless containers.

Talk Abstract

Ever wondered if you could run your web application container on a serverless platform? Wait no further with the recent Google cloud run release it is already possible. You can get from 0 to a working serverless URL for a containerized app in no time. Till now there was nothing that married the goodness of serverless with container’s ease. Cloud run also makes deploying new versions very easy with its web interface. This talk will be a run-through of deploying and running a simple nodejs app on Google Cloud Run in a matter of minutes.

Slides

Slides are also on SlideShare.

Video

Some details

Serverless has seen a good amount of growth in recent months/years. Come out of the illusion that serverless is just Function As A Service (FAAS), for example, S3 is serverless. So be more open to ideas like serverless containers where you don’t need to learn another language/framework/paradigm to get your product faster to your customers. Serverless containers IMHO is that sweet spot with a good level of abstraction as well as having the needed control. Serverless containers enable you to go serverless without the need to be tied to FAAS.

With Google Cloud, you can take advantage of the whole suite of amazing developer-friendly products like Google Cloud Build, Container registry, etc. With the Google Stack Driver offerings like logging, trace, and debugger (which you can use to debug apps even on production), etc, it is sure that Google has put that extra effort to make it’s cloud offering more software engineer friendly than other competitors.

Conclusion

Focus on delivering value to your customers, the faster your customers can use your software the sooner you get the feedback. I did the same setup to run a Node.js app on GKE with full Kubernetes setup, it took me ~2 days with help from another Devops person. I am not saying Kubernetes doesn’t have a place, it is surely not easy to set up and you can’t get a URL for your container in minutes :). With Cloud Run, I built the container pushed it and deployed it from the web interface. All of it took like 15 mins with the container build time.

With the Run on Google Cloud Run button, you can deploy any containerized web app on Cloud Run in minutes. Try Laravel and Symfony if you want. In case you are looking for a full CI/CD kind of setup for your serverless containers check out this currency API repo, the CI/CD part is in the cloudbuild.yml file.

Read more at https://geshan.com.np.

Top comments (0)