Jump to content

Blue–green deployment

From Wikipedia, the free encyclopedia

In software engineering, blue–green deployment is a method of installing changes to a web, app, or database server by swapping alternating production and staging servers.

Overview

[edit]

In blue–green deployments, two servers are maintained: a "blue" server and a "green" server. At any given time, only one server is handling requests (e.g., being pointed to by the DNS). For example, public requests may be routed to the blue server, making it the production server and the green server the staging server, which can only be accessed on a private network. Changes are installed on the non-live server, which is then tested through the private network to verify the changes work as expected. Once verified, the non-live server is swapped with the live server, effectively making the deployed changes live.[1]

Using this method of software deployment offers the ability to quickly roll back to a previous state if anything goes wrong. This rollback is achieved by simply routing traffic back to the previous live server, which still does not have the deployed changes.[2] An additional benefit to the blue–green method of deployment is the reduced downtime for the server. Because requests are routed instantly from one server to the other, there is ideally no period where requests will be unfulfilled.[3]

The blue–green deployment technique is often contrasted with the canary release deployment technique[3] and it has similarities with A/B testing.

History

[edit]

Dan North and Jez Humble encountered differences between their test environments and the production environment while running Oracle WebLogic Server for a client sometime around 2005.[4] To ensure safe deployment, they introduced a method where the new application version was deployed alongside the live system. This approach allowed for thorough testing and easy rollback in case of issues. The team initially considered naming these environments A and B but decided against it to avoid perceived hierarchy. They instead chose color-based names like blue, green, orange, and yellow, eventually using only blue and green since "having two was sufficient".[5] This naming convention was adopted while working on the original Continuous delivery book published in 2010 [6] and became a common term in the industry afterwards.

Benefits and challenges

[edit]

Blue-green deployment is widely recognized for its ability to reduce downtime during application updates and minimize the risk of introducing defects into production environments. By maintaining two separate environments—blue (the current live environment) and green (the environment with the updated version)—traffic can easily be switched between the two, ensuring that updates are rolled out without disrupting users. This method enables quick rollback in case of deployment failure, thus improving overall system resilience and user experience.[7]

While blue-green deployment reduces risks during updates, it also requires additional resources since two environments need to be maintained simultaneously. The cost of running duplicate infrastructure, even temporarily, can be prohibitive for smaller organizations. Furthermore, complex database migrations may pose challenges, as the system must ensure that both the blue and green environments have consistent data. Solutions to these issues often involve using database migration tools that allow for backward compatibility between environments.[7]

Implementation

[edit]

There are several approaches to implementing blue-green deployments, each offering varying levels of automation and ease of use depending on the platform and tools available.

AWS CodeDeploy

[edit]

AWS CodeDeploy facilitates blue-green deployments by automating the entire process across services such as Amazon EC2 and AWS Lambda. The service shifts traffic between the old (blue) environment and the new (green) environment, minimizing downtime and ensuring a smooth transition. AWS CodeDeploy also allows the use of lifecycle event hooks, enabling developers to run tests and verification steps before routing traffic to the green environment.[7]

Sample CodeDeploy configuration[7]:

version: 0.0
os: linux
files:
  - source: /
    destination: /var/www/html
hooks:
  AfterInstall:
    - location: scripts/start_server.sh
      timeout: 300
      runas: root


Deployment command[7]:

aws deploy create-deployment --application-name MyApp --deployment-group-name MyDeploymentGroup --s3-location bucket=my-bucket,key=my-app.zip,bundleType=zip

Kubernetes

[edit]

Kubernetes supports blue-green deployments through its native service capabilities. Using multiple deployments and services, Kubernetes allows operators to manage traffic routing between blue and green environments with minimal risk of service interruptions. Tools like ArgoCD or Spinnaker further enhance automation by integrating deployment pipelines directly with Kubernetes clusters.[8]

Google Cloud Deployment Manager

[edit]

Google Cloud offers blue-green deployment capabilities through Deployment Manager. By defining resources in a declarative format, Deployment Manager allows users to create, update, and delete resources as part of a blue-green deployment process. Like AWS CodeDeploy, it minimizes downtime by shifting traffic from the old to the new environment after performing necessary tests.[9]

Setting up the environment:[10]

  • Install the gcloud CLI or use Google Cloud Shell.
  • Set your default project:
gcloud config set project <YOUR_PROJECT_ID>

Cloning the sample repository:[10]

gcloud source repos clone copy-of-gcp-mig-simple
cd copy-of-gcp-mig-simple

To modify the configuration, navigate to the configuration file (e.g., infra/main.tfvars) and update the environment from blue to green:[10]

sed -i'' -e 's/blue/green/g' infra/main.tfvars

Adding, committing, and pushing your changes to trigger the deployment:[10]

git add .
git commit -m "Promote green"
git push

Example of how the main.tfvars file might look like:[10]

# main.tfvars
project_id = "<YOUR_PROJECT_ID>"
region = "us-central1"
zone = "us-central1-a"

# Load balancer settings
blue_instance_group = "blue-instance-group"
green_instance_group = "green-instance-group"

# Health check settings
health_check = {
  name               = "http-health-check"
  request_path      = "/"
  check_interval_sec = 10
  timeout_sec        = 5
  healthy_threshold  = 2
  unhealthy_threshold = 2
}

Azure Container Apps

[edit]

Azure Container Apps provides blue-green deployment capabilities by using container app revisions, traffic weights, and revision labels. In this deployment model, two identical environments—referred to as "blue" and "green"—are used. The blue environment hosts the current stable version of the application, while the green environment holds the new version. Once the green environment is fully tested, production traffic is routed to it, and the blue environment is deprecated until the next deployment cycle.

To implement blue-green deployment, you create revisions of the container apps and assign traffic weights. The blue revision is assigned 100% of the traffic initially, while the green revision is deployed with no production traffic. After successful testing of the green revision, the traffic is switched over smoothly without downtime. If any issues arise in the green environment, a rollback is easily executed, routing traffic back to the blue revision.[11]

Create a container app with a new revision:[11]

az containerapp create --name $APP_NAME \
     --environment $APP_ENVIRONMENT_NAME \
     --resource-group $RESOURCE_GROUP \
     --image mcr.microsoft.com/k8se/samples/test-app:$BLUE_COMMIT_ID \
     --revision-suffix $BLUE_COMMIT_ID \
     --ingress external \
     --target-port 80 \
     --revisions-mode multiple

Deploy a new green revision:[11]

az containerapp update --name $APP_NAME \
  --resource-group $RESOURCE_GROUP \
  --image mcr.microsoft.com/k8se/samples/test-app:$GREEN_COMMIT_ID \
  --revision-suffix $GREEN_COMMIT_ID \
  --set-env-vars REVISION_COMMIT_ID=$GREEN_COMMIT_ID

Switch 100% of production traffic to the green revision:[11]

az containerapp ingress traffic set \
  --name $APP_NAME \
  --resource-group $RESOURCE_GROUP \
  --label-weight blue=0 green=100

References

[edit]
  1. ^ LaToza, Thomas (2019). "Deployment" (PDF). Archived from the original (PDF) on 2020-01-14. Retrieved 2020-01-14.
  2. ^ Fowler, Martin (2010-03-01). "Blue Green Deployment". Archived from the original on 2020-01-10. Retrieved 2020-01-14.
  3. ^ a b Posta, Christian (2015-08-03). "Blue-green Deployments, A/B Testing, and Canary Releases". Archived from the original on 2018-03-30. Retrieved 2020-01-14.
  4. ^ Kuenzli, Stephen (2010-03-01). "Origin Story: The Blue-Green Deployment Method". Archived from the original on 2023-06-09. Retrieved 2024-01-23.
  5. ^ Terhorst-North, Daniel (2010-03-01). "Blue-Green deployment". Retrieved 2024-01-23.
  6. ^ Humble, Jez; Farley, David (2010). Continuous Delivery: Reliable Software Releases Through Build, Test and Deployment Automation. Addison-Wesley. ISBN 978-0-321-60191-9.
  7. ^ a b c d e "Blue-Green Deployment: Update Software Risk-Free - DZone". dzone.com. Retrieved 2024-09-29.
  8. ^ "Best practices for continuous integration and delivery to Google Kubernetes Engine". Google Cloud. Retrieved 2024-09-29.
  9. ^ "Reduce Deployment Risk with Blue-Green Deployments". Google Cloud. Retrieved 2024-09-29.
  10. ^ a b c d e "Deploy to Compute Engine | Cloud Build Documentation". Google Cloud. Retrieved 2024-09-29.
  11. ^ a b c d "Blue-Green Deployment in Azure Container Apps". Microsoft Learn. Retrieved 2024-09-29.