Understanding the Pipeline structure in Azure DevOps


LearnAzureDevOps-O5

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:

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:

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:

4. Steps

Steps define individual actions within a job. They can be simple commands or complex tasks with dependencies.

Example:

5. Tasks

Tasks are predefined actions provided by Azure DevOps or custom scripts used in a pipeline step.

Example:

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:

b. Rolling Deployment

Gradually rolls out a deployment to a subset of instances before completing the entire deployment.

Example:

c. Canary Deployment

Deploys to a small subset of users or servers first, ensuring minimal risk before scaling up.

Example:

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:

b. deploy

Perform actions during the deployment.

Example:

c. routeTraffic

Divert traffic to the newly deployed version.

Example:

d. postRouteTraffic

Post-traffic monitoring after deploying changes.

Example:

e. on:failure

Run actions if deployment fails.

Example:

f. on:success

Run actions if deployment succeeds.

Example:

Example of Complete Deployment Pipeline

Summary Table of Pipeline Structure in Azure DevOps

ComponentDescription
PipelineTop-level structure encompassing stages and jobs.
StageLogical grouping of jobs.
JobGroup of steps executed on a single agent within a stage.
StepsIndividual actions or commands within a job.
TasksPredefined actions for tasks like building, deploying, or testing.
Deployment StrategyDefines how deployments are rolled out (e.g., RunOnce, Rolling, Canary).
Lifecycle HooksCustom actions triggered during specific phases (preDeploy, deploy, routeTraffic, etc.).

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.