Talks
Events

Kickstarting Your Azure Pipeline with Templates

Cosmin Mitescu, Florin Ioanitescu, Wouter Ligtenberg at GOTOpia February 2021

Azure pipeline templates are a powerful way of scaling your CI/CD pipelines throughout your organization. When combining it with software engineering practices it becomes a powerful tool in speeding up the build and release work done by DevOps teams.
Templates facilitate the creation of scalable, parameterized pipelines that can be unit tested and ensure pipeline immutability while remaining a consistent and transparent single source of truth.
The ING DevOps engineering team has created a way to build and deploy JVM applications in the cloud to be consumed by multiple teams from the entire tribe and more by using templates developed in Azure DevOps with the goal to automate a pipeline end to end, from code to runtime.
To achieve this, they wrote code to automate everything and also created a system to manage these pipelines. Some other objectives they set for themselves were:
• maintenance of the pipeline must be low
• the pipeline must have a versioning in place as to not break consumers pipelines when we update it
• it must be flexible, for different languages and applications
• any of their colleagues should ...