Learn about the components in Azure DevOps Pipeline
Azure DevOps pipelines are structured with several key components that define how automation is performed across different stages of the software delivery lifecycle. Below is an expanded view of these components along with deployment strategies and lifecycle hooks.
1. Pipeline
A pipeline represents a CI/CD workflow that automates building, testing, and deploying software. It includes stages, jobs, steps, and other configuration elements that manage the flow of the pipeline.
2. Stage
A stage is a logical grouping of jobs within a pipeline. Each stage represents a specific phase, such as Build, Test, or Deploy. Multiple stages can be used for different environments (e.g., Development, Staging, Production).
Example:
xxxxxxxxxx
71stages
2stage Build
3 jobs
4job BuildJob
5 steps
6script echo "Building..."
7 displayName'Run Build Command'
3. Job
A job represents a set of steps executed on a specific agent. Jobs within a stage can run in parallel or sequentially.
Example:
xxxxxxxxxx
41jobs
2job DeployJob
3 steps
4script echo "Deploying..."
4. Steps
Steps are the individual actions or tasks performed within a job. They can execute scripts, run tasks, or invoke other pipelines.
Example:
xxxxxxxxxx
31steps
2script dotnet restore
3 displayName'Restore Dependencies'
5. Tasks
Tasks are pre-defined actions or operations that are added to a step. Tasks provide functionality like running scripts, installing tools, or managing deployments.
Example:
xxxxxxxxxx
41steps
2task PublishBuildArtifacts@1
3 inputs
4 buildDirectory $(Pipeline.Workspace)/artifacts
6. Deployment Strategies
Deployment strategies define how a release or deployment is managed and can vary based on how the release is rolled out to different environments.
a. RunOnce
Deploys once to a specified environment.
Example:
xxxxxxxxxx
81jobs
2deployment DeployOnce
3 environment'Production'
4 strategy
5 runOnce
6 deploy
7 steps
8script echo "Deploying to Production"
b. Rolling
Deploys to multiple environments incrementally, rolling forward.
Example:
xxxxxxxxxx
81jobs
2deployment RollingUpdate
3 environment'Staging'
4 strategy
5 rolling
6 deploymentTimeoutInMinutes30
7 batchCount2
8 rollBackOnFailuretrue
c. Canary
Deploys a subset of traffic to a new environment and monitors performance before expanding to the full environment.
Example:
xxxxxxxxxx
111jobs
2deployment CanaryRelease
3 environment'Staging'
4 strategy
5 canary
6 firstExitCriteria
7 count50
8 intervalInMinutes5
9 secondExitCriteria
10 count100
11 intervalInMinutes15
7. Lifecycle Hooks
Lifecycle hooks define steps that execute before or after key deployment stages, enabling more control and flexibility. They can handle actions such as rolling back deployments, verifying configurations, or managing routing of traffic.
Lifecycle Hooks
preDeploy: Runs before deployment begins.
deploy: Executes immediately after deployment.
routeTraffic: Handles traffic routing after deployment.
postRouteTraffic: Runs after traffic is successfully routed.
on:failure: Executes specific steps when a deployment or stage fails.
on:success: Executes specific steps when a deployment or stage succeeds.
Example:
xxxxxxxxxx
111jobs
2deployment ProductionDeployment
3 environment'Production'
4 strategy
5 runOnce
6 deploy
7 steps
8script echo "Deploying to Production"
9 postRouteTraffic
10 steps
11script echo "Post-deployment monitoring"
Example Full Pipeline with Deployment Strategies and Lifecycle Hooks
xxxxxxxxxx
501trigger
2 main
3variables
4 buildConfiguration'Release'
5pool
6 vmImage'ubuntu-latest'
7stages
8stage Build
9 displayName'Build Stage'
10 jobs
11job BuildJob
12 steps
13checkout self
14script dotnet restore
15 displayName'Restore Dependencies'
16script dotnet build --configuration $(buildConfiguration)
17 displayName'Build Solution'
18stage Deploy
19 displayName'Deploy Stage'
20 jobs
21deployment DeployToProduction
22 environment'Production'
23 strategy
24 runOnce
25 deploy
26 steps
27script echo "Deploying to Production"
28 preDeploy
29 steps
30script echo "Running pre-deployment checks"
31 routeTraffic
32 steps
33script echo "Routing traffic to new deployment"
34 postRouteTraffic
35 steps
36script echo "Post-deployment monitoring"
37stage Canary
38 displayName'Canary Release'
39 dependsOn Deploy
40 jobs
41deployment CanaryDeployment
42 environment'Canary'
43 strategy
44 canary
45 firstExitCriteria
46 count50
47 intervalInMinutes5
48 secondExitCriteria
49 count100
50 intervalInMinutes15
Summary
Component | Description |
---|---|
Pipeline | A CI/CD workflow managing build, test, and deployment automation. |
Stage | Represents a logical grouping of jobs within a pipeline. |
Job | A set of steps executed on an agent. |
Steps | Individual actions or tasks within a job. |
Tasks | Predefined or custom actions within steps. |
Deployment Strategies | Techniques to deploy to different environments (RunOnce, Rolling, Canary). |
Lifecycle Hooks | Actions executed at specific stages (preDeploy, deploy, routeTraffic, etc.). |
Leave a Reply