Exploring YAML resources in Azure DevOps
Azure DevOps allows the definition and management of resources within YAML pipelines to streamline deployments, manage dependencies, and enable reusable configurations.
There are three main types of resources:
Pipeline Resource
Container Resource
Repository Resource
1. Pipeline Resource
Pipeline resources manage dependencies between different pipelines, enabling reusability and automation across projects. You can define pipeline resources to trigger or use outputs from other pipelines.
Example: Using Pipeline Resource
xxxxxxxxxx
161resources
2 pipelines
3pipeline MyDependencyPipeline
4 source'my-org/my-project'
5 trigger
6 branches
7 include
8 main
9 batchtrue
10stages
11stage Build
12 jobs
13job BuildJob
14 steps
15script echo "Building from MyDependencyPipeline"
16 displayName'Use Pipeline Resource'
Key Properties:
pipeline: Specifies the pipeline to be referenced.
source: Defines the repository path.
trigger: Specifies when the resource pipeline is triggered.
2. Container Resource
Container resources provide the capability to manage Docker containers and dependencies in the pipeline, allowing the use of containerized environments for builds, testing, or deployments.
Example: Using Container Resource
xxxxxxxxxx
111resources
2 containers
3container MyContainer
4 image mcr.microsoft.com/dotnet/aspnet6.0
5stages
6stage Build
7 jobs
8job BuildJob
9 steps
10script echo "Running inside Docker container"
11 displayName'Use Container Resource'
Key Properties:
container: Defines the container to be used.
image: Specifies the Docker image.
3. Repository Resource
Repository resources enable sharing artifacts or dependencies from other repositories in a YAML pipeline. This allows pipelines to pull or push code changes, packages, and other resources from/to repositories.
Example: Using Repository Resource
xxxxxxxxxx
121resources
2 repositories
3repository MyRepo
4 type git
5 name'my-org/my-repo'
6stages
7stage Test
8 jobs
9job TestJob
10 steps
11script echo "Using Repository Resource"
12 displayName'Use Repository Resource'
Key Properties:
repository: Specifies the repository name.
type: Defines the type of resource (e.g.,
git
).
Combining Resources in a Pipeline
You can combine multiple resources within a single pipeline to manage dependencies and automation efficiently.
Example: Combining Pipeline, Container, and Repository Resources
xxxxxxxxxx
221resources
2 pipelines
3pipeline BuildPipeline
4 source'my-org/my-build-project'
5 trigger
6 branches
7 include
8 main
9 containers
10container BuildContainer
11 image mcr.microsoft.com/dotnet/core/sdk3.1
12 repositories
13repository SharedRepo
14 type git
15 name'my-org/shared-library'
16stages
17stage Build
18 jobs
19job BuildJob
20 steps
21script echo "Using Build Pipeline, Docker Container, and Repository"
22 displayName'Multi-Resource Usage'
Key Benefits of Resources
Dependency Management: Easily manage and reuse outputs from different pipelines or repositories.
Containerization: Standardizes environments for builds, tests, and deployments using Docker containers.
Resource Reusability: Enables sharing of common artifacts and workflows across multiple pipelines.
Leave a Reply