🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

DevOps Intermediate

What is Continuous Deployment?

A practice where every code change that passes automated tests is automatically deployed to production.

Continuous Deployment is the final stage of CI/CD automation. After code passes all automated tests (unit, integration, end-to-end), it is automatically released to production without human intervention.

This requires comprehensive test coverage, feature flags (to control feature rollout), monitoring and rollback capabilities, and confidence in the automated pipeline. Companies like Netflix, Amazon, and Etsy deploy hundreds of times per day using continuous deployment.

Related Terms

Git
A distributed version control system that tracks changes in source code during software development.
Helm
A package manager for Kubernetes that simplifies deploying and managing applications using reusable, configurable charts.
Rolling Update
A deployment strategy that gradually replaces old application instances with new ones, maintaining availability throughout.
ArgoCD
A declarative GitOps continuous delivery tool for Kubernetes that automatically syncs cluster state with Git repositories.
Infrastructure as Code (IaC)
The practice of managing infrastructure through machine-readable configuration files rather than manual processes.
YAML
A human-readable data serialization language commonly used for configuration files in DevOps tools and applications.
View All DevOps Terms →