This is a simple tutorial on how to do Blue/Green Deployment on Kubernetes.
Any Kubernetes cluster 1.3+ should work. Creating a cluster on GKE is pretty easy.
gcloud container clusters create bluegreen
The blue Deployment is the version that is deployed live in production. It can be accessed externally by end users via a Service with type=LoadBalancer
The Deployment will start up a few nginx containers as the application. The Deployment has a name
and version
label. This is significant as the Service will use these labels to switch to the green version later.
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: nginx-1.10
spec:
replicas: 3
template:
metadata:
labels:
name: nginx
version: "1.10"
spec:
containers:
- name: nginx
image: nginx:1.10
ports:
- name: http
containerPort: 80
Create the Blue Deployment:
$ kubectl apply -f kubernetes/blue-deploy.yaml
The service is of type=LoadBalancer so it can be accessed via a Network Load Balancer on GCP. It uses the name
and version
labels specified in the Deployment to select the pods for the service.
apiVersion: v1
kind: Service
metadata:
name: nginx
labels:
name: nginx
spec:
ports:
- name: http
port: 80
targetPort: 80
selector:
name: nginx
version: "1.10"
type: LoadBalancer
Create the Service:
$ kubectl apply -f kubernetes/service.yaml
The currently deployed version can be tested in a separate window by polling the server. This will print the current deployed nginx version.
$ EXTERNAL_IP=$(kubectl get svc nginx -o jsonpath="{.status.loadBalancer.ingress[*].ip}")
$ while true; do curl -s http://$EXTERNAL_IP/version | grep nginx; sleep 0.5; done
Now we are ready to deploy a new version.
A new Deployment will be created to update the application and the Service will be updated to point at the new version. This is mostly instantaneous.
The Green Deployment is cerated by updating to the next version. An entirely new Deployment will be created with different labels. Note that these labels don't match the Service yet and so requests will not be sent to pods in the Deployment.
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: nginx-1.11
spec:
replicas: 3
template:
metadata:
labels:
name: nginx
version: "1.11"
spec:
containers:
- name: nginx
image: nginx:1.11
ports:
- name: http
containerPort: 80
You can update the Blue Deployment's file directly or use a tool like sed
:
Create the new Deployment:
$ sed 's/1\.10/1.11/' kubernetes/blue-deploy.yaml | kubectl apply -f -
We will update the Service to select pods from the Green Deployment. This will cause new requests to be set to the new pods.
You can update the file directly or use a tool like sed
:
$ sed 's/1\.10/1.11/' kubernetes/service.yaml
apiVersion: v1
kind: Service
metadata:
name: nginx
labels:
name: nginx
spec:
ports:
- name: http
port: 80
targetPort: 80
selector:
name: nginx
version: "1.11"
type: LoadBalancer
Update the Service:
sed 's/1\.10/1.11/' kubernetes/service.yaml | kubectl apply -f -
At this point traffic should be sent to the Green version and the output of our test loop should show "nginx/1.11.X". However, in a production environment, the Blue version may have some long running requests so it may take some time before the requests are fully drained. That means that some time should be given before deleting the old Blue Deployment.
While ideally Blue/Green Deployments would be implemented server side, one way to automate them is on the client-side using scripts. This very simple bash script creates the new Deployment and waits for it to become ready before updating the Service's selector.
#!/bin/bash
# bg-deploy.sh <servicename> <version> <green-deployment.yaml>
# Deployment name should be <service>-<version>
DEPLOYMENTNAME=$1-$2
SERVICE=$1
VERSION=$2
DEPLOYMENTFILE=$3
kubectl apply -f $DEPLOYMENTFILE
# Wait until the Deployment is ready by checking the MinimumReplicasAvailable condition.
READY=$(kubectl get deploy $DEPLOYMENTNAME -o json | jq '.status.conditions[] | select(.reason == "MinimumReplicasAvailable") | .status' | tr -d '"')
while [[ "$READY" != "True" ]]; do
READY=$(kubectl get deploy $DEPLOYMENTNAME -o json | jq '.status.conditions[] | select(.reason == "MinimumReplicasAvailable") | .status' | tr -d '"')
sleep 5
done
# Update the service selector with the new version
kubectl patch svc $SERVICE -p "{\"spec\":{\"selector\": {\"name\": \"${SERVICE}\", \"version\": \"${VERSION}\"}}}"
echo "Done."