What is Blue-Green Deployment in the context of CI/CD?

  • A cloud storage service
  • A container orchestration tool
  • A deployment strategy
  • A version control system
Blue-Green Deployment is a deployment strategy used in CI/CD. It involves having two identical environments, with one active (Blue) and the other inactive (Green). The new version is deployed to the inactive environment, and the switch is made to make it live. This approach reduces downtime and allows quick rollback if issues arise.
Add your answer
Loading...