From the course: Azure DevOps: Continuous Delivery with YAML Pipelines

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Deployment jobs

Deployment jobs - Azure Tutorial

From the course: Azure DevOps: Continuous Delivery with YAML Pipelines

Start my 1-month free trial

Deployment jobs

- [Instructor] The next thing we're going to look at is how we can use YAML pipelines to implement continuous delivery, or CD. In this scenario, we take the artifacts from the continuous integration pipeline and we deploy it into the environments using deployment tasks. These environments might include things like dev, test, or staging, or other environment names that you've got as well. In our continuous integration pipeline, we might also want to confirm that the deployment tasks are going to work. That way we can confirm that everything is working the way that it should. We do this with a special kind of job called a deployment job. These are special jobs that deploy the code out into a compute environment. It does it by running a collection of steps sequentially in that environment, and we can go against a variety of different types of computing, including Kubernetes, VMs like we've seen, we can also do Web…

Contents