Learn about the components in Azure DevOps Pipeline


LearnAzureDevOps-O5

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:

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:

4. Steps

Steps are the individual actions or tasks performed within a job. They can execute scripts, run tasks, or invoke other pipelines.

Example:

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:

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:

b. Rolling

Deploys to multiple environments incrementally, rolling forward.

Example:

c. Canary

Deploys a subset of traffic to a new environment and monitors performance before expanding to the full environment.

Example:

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:

Example Full Pipeline with Deployment Strategies and Lifecycle Hooks

Summary

ComponentDescription
PipelineA CI/CD workflow managing build, test, and deployment automation.
StageRepresents a logical grouping of jobs within a pipeline.
JobA set of steps executed on an agent.
StepsIndividual actions or tasks within a job.
TasksPredefined or custom actions within steps.
Deployment StrategiesTechniques to deploy to different environments (RunOnce, Rolling, Canary).
Lifecycle HooksActions executed at specific stages (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.