Community AMA: Bryan Finster and Continuous Delivery

Continuous Delivery isn’t about how fast you can deliver, it’s about the outcome your delivery achieves. Bryan Finster, author of the 5-minute DevOps series and founder of the DevOps Dojo, joined our Dev Interrupted Discord community to answer your questions about outcome-based development, continuous delivery, and why failing small is better than failing fast. 

Bryan is currently a Distinguished Engineer at Defense Unicorns but has also worked for Walmart as a systems analyst and eventually became a staff software engineer for Walmart Labs. He had previously appeared on the Dev Interrupted Podcast to further talk about these subjects as well as the most common pitfalls dev teams find when trying to optimize their delivery process. Listen to the episode here:

Self-Service Delivery

I remember the first time I experienced Heroku. The simplicity of deployment via git push heroku master was so elegant. It gave every developer the power to ship from a simple push. It was also a PaaS, so you didn't need to ask anyone for infrastructure to run your app. There was no deployment script to write and no CI configuration to craft and test, thanks to pre-defined buildpacks. The assumption that apps were similar and could be built by standard buildpacks freed us from the need to define the build and deployment ourselves. We were free to focus on writing code, to develop and ship without needing permission and with minimal or no toil to deploy.

The experience as a developer was delightful and it empowered us. But then pesky requirements like support for more sophisticated architectures than a simple app instance, and more rigorous build, test, and deployment support reared their heads. PaaS fell short of the demands of most real-world apps because it wasn't flexible enough.