Exploring Deployment Jobs strategies in Azure DevOps multi-stage YAML – Canary for AKS example
A Canary Deployment strategy for Azure Kubernetes Service (AKS) involves deploying updates to a small set of Kubernetes pods or services to validate changes before scaling them across the entire AKS environment.
This helps to ensure that updates don’t cause disruptions and issues can be resolved early.
Steps to Implement Canary Deployment for AKS in Azure DevOps
Deploy to Canary AKS Environment: Deploy updates to a small subset of AKS pods.
Monitor and Validate: Perform monitoring, testing, and validation on the Canary pods.
Approval and Full Deployment: After successful Canary testing, move to a full-scale deployment.
Example Multi-stage YAML for Canary Deployment to AKS
xxxxxxxxxx
231stages
2stage Canary
3 jobs
4job DeployCanaryAKS
5 steps
6script
7 kubectl apply -f ./canary-deployment.yaml
8 kubectl rollout status deployment/myapp -n my-namespace
9script
10 kubectl get pods -n my-namespace
11 kubectl logs $(kubectl get pods -n my-namespace | grep myapp-canary | awk '{print $1}') -n my-namespace
12hooks
13approval
14 name Canary Approval
15 condition eq(variables'Build.Status' , 'Succeeded')
16stage Production
17 dependsOn Canary
18 jobs
19job DeployProductionAKS
20 steps
21script
22 kubectl apply -f ./production-deployment.yaml
23 kubectl rollout status deployment/myapp -n my-namespace
Details of Canary Deployment for AKS
Canary Deployment: Deploy a small number of AKS pods using a dedicated Canary deployment configuration (
canary-deployment.yaml
).Monitoring and Validation: Validate the health and stability of Canary pods using commands like
kubectl get pods
andkubectl logs
.Approval: Use an approval gate to ensure successful Canary validation before proceeding to full deployment.
Production Deployment: Deploy updates to the full AKS cluster using the production configuration (
production-deployment.yaml
).
Detailed Steps
Deploy to Canary AKS:
Apply a dedicated Canary deployment configuration (
canary-deployment.yaml
).Monitor the status of the deployment using
kubectl rollout status
.
xxxxxxxxxx
31script
2kubectl apply -f ./canary-deployment.yaml
3kubectl rollout status deployment/myapp -n my-namespace
Validate Canary Deployment: Get the list of pods and logs to ensure the Canary deployment is stable.
xxxxxxxxxx
31script
2kubectl get pods -n my-namespace
3kubectl logs $(kubectl get pods -n my-namespace | grep myapp-canary | awk '{print $1}') -n my-namespace
Approval Hook: Implement an approval step after Canary validation to ensure only stable deployments move forward.
xxxxxxxxxx
41hooks
2approval
3name Canary Approval
4condition eq(variables'Build.Status' , 'Succeeded')
Production Deployment: Once Canary deployment is validated, proceed with deploying the production configuration.
xxxxxxxxxx
31script
2kubectl apply -f ./production-deployment.yaml
3kubectl rollout status deployment/myapp -n my-namespace
Benefits of Canary Deployment for AKS
Reduced Risk: Smaller scale deployment to validate changes before scaling.
Early Detection: Quickly identify and fix issues without impacting the entire AKS cluster.
Progressive Rollout: Gradual expansion of updates, reducing downtime.
Monitoring and Validation: Enhanced visibility into deployment health through logging and status checks.
Leave a Reply