Pipeline as Code
Defining CI/CD pipeline configurations as version-controlled code files rather than through UI-based pipeline builders.
Pipeline as Code โ Defining CI/CD pipeline configurations as version-controlled code files rather than through UI-based pipeline builders.
Pipeline as Code stores build, test, and deployment pipeline definitions in the same repository as application code. Examples include Jenkinsfile (Jenkins), .github/workflows/*.yml (GitHub Actions), .gitlab-ci.yml (GitLab), and azure-pipelines.yml (Azure DevOps). Benefits include version history of pipeline changes, code review for pipeline modifications, branch-specific pipeline variations, and reproducibility. Pipelines typically define stages (build, test, deploy), steps within stages, environment variables, triggers (push, PR, schedule), and conditions. Treating pipelines as code enables the same engineering practices (review, testing, rollback) applied to application development.
Learn more: Full glossary entry โ
Related Resources
DevOps Complete Guide & Cheatsheet 2026
Free Cheatsheet โ Download PDF
DevOps Roadmap & Complete Cheat Sheet 2026: From Beginner to Advanced
Blog Post โ Deep dive article