Exploring Deployment Jobs strategies in Azure DevOps multi-stage YAML – Rolling Deployment
A Rolling Deployment strategy in Azure DevOps involves deploying updates incrementally to one environment at a time, moving from lower environments to higher environments (e.g., Development → Staging → Production).
This allows for gradual validation and testing before the changes are fully deployed.
Key Concepts of Rolling Deployment
Incremental Deployment: Deploying updates to one environment at a time while ensuring stability in previous environments.
Traffic Shifting: Gradually moving traffic from the old environment to the new environment as updates are deployed.
Progressive Validation: Ensuring that lower environments are stable before proceeding to higher environments.
Example Multi-stage YAML with Rolling Deployment Strategy
xxxxxxxxxx
211stages
2stage Dev
3 jobs
4job DeployDev
5 steps
6script echo "Deploying to Development environment..."
7script echo "Testing in Development..."
8stage Staging
9 dependsOn Dev
10 jobs
11job DeployStaging
12 steps
13script echo "Deploying to Staging environment..."
14script echo "Testing in Staging..."
15stage Production
16 dependsOn Staging
17 jobs
18job DeployProduction
19 steps
20script echo "Deploying to Production environment..."
21script echo "Validating in Production..."
Details of Rolling Deployment Strategy
Dev Stage:
Deploy updates to the Development environment.
Perform testing to ensure stability.
Staging Stage:
After Dev is stable, move to Staging.
Ensure proper validation and testing in Staging.
Production Stage: Once Staging is validated, deploy to Production with minimal risk.
Steps in Rolling Deployment
Deploy to Development:
Apply updates to the Development environment.
Run unit tests and basic validations.
Deploy to Staging:
After Development is stable, deploy to Staging.
Conduct more comprehensive testing.
Deploy to Production: Finally, deploy updates to Production after ensuring that Development and Staging environments are stable.
Additional Considerations
Traffic Management: Gradually shift traffic from old environments to new ones to minimize impact.
Testing: Conduct extensive testing at each stage to ensure quality.
Rollback: Prepare rollback strategies in case issues arise at any stage.
Notifications: Use notifications at each stage to inform stakeholders about progress and deployment status.
Using Approval Gates in Rolling Deployment
You can combine Rolling Deployment with Approval Gates to ensure manual intervention at key stages.
xxxxxxxxxx
291stages
2stage Dev
3 jobs
4job DeployDev
5 steps
6script echo "Deploying to Development..."
7script echo "Testing Development environment..."
8hooks
9approval
10 name Dev Approval
11 condition eq(variables'Build.Status' , 'Succeeded')
12stage Staging
13 dependsOn Dev
14 jobs
15job DeployStaging
16 steps
17script echo "Deploying to Staging..."
18script echo "Testing Staging environment..."
19hooks
20approval
21 name Staging Approval
22 condition eq(variables'Build.Status' , 'Succeeded')
23stage Production
24 dependsOn Staging
25 jobs
26job DeployProduction
27 steps
28script echo "Deploying to Production..."
29script echo "Validating Production environment..."
Summary
A Rolling Deployment strategy in Azure DevOps helps ensure a gradual and controlled deployment process, minimizing risk and improving overall system stability. Write in comments and let me know if you’d like more details or examples.
Leave a Reply