Understanding the Pipeline structure in Azure DevOps
In Azure DevOps, a pipeline is the top-level structure that automates software delivery. Within a pipeline, you create stages, jobs, steps, and define tasks to execute different stages of your CI/CD workflow. Additionally, deployment strategies and lifecycle hooks enable fine-grained control over deployments and can manage different release scenarios.
1. Pipeline
A pipeline is the highest level in the hierarchy, comprising stages that represent phases in the CI/CD process. Each stage can have multiple jobs.
Example Structure:
xxxxxxxxxx
121pipeline
2 name'MyPipeline'
3stages
4stage Build
5 jobs
6job BuildJob
7 steps
8script echo "Building the project"
9stage Deploy
10 jobs
11deployment DeployToProd
12 environment'Production'
2. Stage
A stage groups multiple jobs, representing logical units of work (e.g., build, test, deploy). Stages are linked together in a sequential or parallel flow.
Example:
xxxxxxxxxx
111stages
2stage Build
3 jobs
4job BuildJob
5 steps
6script echo "Building the project"
7stage Test
8 jobs
9job TestJob
10 steps
11script echo "Running tests"
3. Job
Jobs are individual tasks performed on a single agent within a stage. A job contains steps that execute a sequence of commands or tasks.
Example:
xxxxxxxxxx
31job BuildJob
2 steps
3script echo "Building the application"
4. Steps
Steps define individual actions within a job. They can be simple commands or complex tasks with dependencies.
Example:
xxxxxxxxxx
51steps
2script dotnet restore
3 displayName'Restore Dependencies'
4script dotnet build --configuration Release
5 displayName'Build Solution'
5. Tasks
Tasks are predefined actions provided by Azure DevOps or custom scripts used in a pipeline step.
Example:
xxxxxxxxxx
51steps
2task UseDotNet@2
3 inputs
4 packageType'sdk'
5 version'6.x'
6. Deployment Strategies
Azure DevOps provides various deployment strategies to handle different deployment patterns:
a. RunOnce
Deploy once to a specific environment without any further rollbacks or retries.
Example:
xxxxxxxxxx
61deployment DeployToProd
2 strategy
3 runOnce
4 deploy
5 steps
6script echo "Deploying to Production"
b. Rolling Deployment
Gradually rolls out a deployment to a subset of instances before completing the entire deployment.
Example:
xxxxxxxxxx
61deployment DeployToProd
2 strategy
3 rolling
4 batchCount5
5 preDeploytrue
6 postDeploytrue
c. Canary Deployment
Deploys to a small subset of users or servers first, ensuring minimal risk before scaling up.
Example:
xxxxxxxxxx
51deployment DeployToProd
2 strategy
3 canary
4 count2
5 postRouteTraffictrue
7. Lifecycle Hooks
Lifecycle hooks allow you to define custom actions at specific stages in the deployment process, such as before or after deploying changes.
a. preDeploy
Execute actions before deploying changes.
Example:
xxxxxxxxxx
51deployment DeployToProd
2 strategy
3 canary
4 count2
5 preDeploytrue
b. deploy
Perform actions during the deployment.
Example:
xxxxxxxxxx
51deployment DeployToProd
2 strategy
3 canary
4 count2
5 deploytrue
c. routeTraffic
Divert traffic to the newly deployed version.
Example:
xxxxxxxxxx
51deployment DeployToProd
2 strategy
3 canary
4 count2
5 routeTraffictrue
d. postRouteTraffic
Post-traffic monitoring after deploying changes.
Example:
xxxxxxxxxx
51deployment DeployToProd
2 strategy
3 canary
4 count2
5 postRouteTraffictrue
e. on:failure
Run actions if deployment fails.
Example:
xxxxxxxxxx
71deployment DeployToProd
2 strategy
3 canary
4 count2
5 on:failure
6 steps
7script echo "Sending failure notification"
f. on:success
Run actions if deployment succeeds.
Example:
xxxxxxxxxx
71deployment DeployToProd
2 strategy
3 canary
4 count2
5 on:success
6 steps
7script echo "Deployment completed successfully"
Example of Complete Deployment Pipeline
xxxxxxxxxx
221pipeline
2 name'MyPipeline'
3stages
4stage Build
5 jobs
6job BuildJob
7 steps
8script echo "Building the project"
9stage Deploy
10 jobs
11deployment DeployToProd
12 environment'Production'
13 strategy
14 canary
15 count2
16 preDeploytrue
17 deploytrue
18 routeTraffictrue
19 postRouteTraffictrue
20 on:failure
21 steps
22script echo "Failure handling"
Summary Table of Pipeline Structure in Azure DevOps
Component | Description |
---|---|
Pipeline | Top-level structure encompassing stages and jobs. |
Stage | Logical grouping of jobs. |
Job | Group of steps executed on a single agent within a stage. |
Steps | Individual actions or commands within a job. |
Tasks | Predefined actions for tasks like building, deploying, or testing. |
Deployment Strategy | Defines how deployments are rolled out (e.g., RunOnce, Rolling, Canary). |
Lifecycle Hooks | Custom actions triggered during specific phases (preDeploy, deploy, routeTraffic, etc.). |
Leave a Reply