Exploring Deployment Jobs strategies in Azure DevOps multi-stage YAML – RunOnce
In Azure DevOps Multi-stage YAML pipelines, the RunOnce deployment job strategy is used when a job should run only once, regardless of how many environments or stages are involved. This strategy is useful for tasks that should be executed only once, such as setting up infrastructure, performing migrations, or applying a one-time configuration.
Key Use Cases for RunOnce Strategy
Initial Setup: Set up infrastructure or configurations that should only run once.
Database Migrations: Perform migrations or schema updates in a one-time job.
Resource Initialization: Initialize resources like key vaults or service bus configurations.
Example Multi-stage YAML with RunOnce Deployment Job
xxxxxxxxxx
221stages
2stage Initialize
3 jobs
4job RunOnceJob
5 runsOn self-hosted
6 steps
7script echo "Running initial setup..."
8 displayName"Setup Initialization"
9stage Deploy
10 dependsOn Initialize
11 jobs
12job DeployJob
13 steps
14script echo "Deploying application..."
15 displayName"Application Deployment"
16stage Verify
17 dependsOn Deploy
18 jobs
19job VerifyJob
20 steps
21script echo "Verifying deployment..."
22 displayName"Deployment Verification"
Details of the RunOnce Job
RunOnceJob
:This job runs only once, usually during the initialization or initial setup stage.
It does not run in subsequent stages or environments unless explicitly re-triggered.
xxxxxxxxxx
51job RunOnceJob
2runsOn self-hosted
3steps
4script echo "Running initial setup..."
5displayName"Setup Initialization"
Following Stages: Subsequent stages (
Deploy
,Verify
) depend on theInitialize
stage, which contains theRunOnceJob
.
Advantages of RunOnce Deployment Strategy
Single Execution: Ensures specific tasks (like setting up configurations or initializing resources) are executed only once.
Consistency: Useful for enforcing infrastructure as code or initial environment setup.
Simplified Maintenance: Avoids redundant execution of jobs, reducing unnecessary compute or resource usage.
Other Considerations
Dependencies: The
RunOnceJob
can be dependent on other tasks (e.g., preparation of infrastructure).Integration: Can be integrated with tools such as Terraform or ARM templates for infrastructure setup.
Summary
That's all for this blog. Kindly write back through your comments and let me know if you need more details or examples of how to apply this in a specific scenario. Thanks for reading.
Leave a Reply