Quick Answer
Rollback strategies: blue-green makes rollback instant (switch traffic back to blue). Canary rollback means reducing new version traffic to 0. Rolling rollback: Kubernetes rolls back the Deployment to previous ReplicaSet version (kubectl rollout undo). Feature flags let you disable a feature without redeploying. Keep DB migrations backwards-compatible to allow code rollbacks without data loss.
Answer
CI/CD pipelines enable automated rollback to stable versions. Container orchestrators like Kubernetes support reverting deployments. Monitoring determines when rollback is necessary.
S
SugharaIQ Editorial Team
Verified Answer
This answer has been peer-reviewed by industry experts holding senior engineering roles to ensure technical accuracy and relevance for modern interview standards.