Deployment Strategy - CI/CD Glossary Definition
A deployment strategy is how a new version replaces the old one. The two built-in Kubernetes strategies are RollingUpdate (gradual, zero-downtime) and Recreate (stop all, then start new); blue-green and canary are higher-level patterns built on top.
In CD
A safe pipeline pairs a rolling or canary strategy with health checks so a bad build is caught and rolled back before it reaches all users.
Related guides
Rolling Update - CI/CD Glossary DefinitionRolling Update: A rolling update replaces pods incrementally, bringing up new ones and tearing down old ones…
Recreate Strategy - CI/CD Glossary DefinitionRecreate Strategy: The Recreate strategy terminates all old pods before creating new ones, accepting a brief…
Pod Disruption Budget - CI/CD Glossary DefinitionPod Disruption Budget: A pod disruption budget limits how many pods of an application can be voluntarily evic…