Skip to content

Files

Latest commit

573b656 · Mar 15, 2022

History

History
147 lines (94 loc) · 10.9 KB

how-to-continuous-integration-continuous-deployment.md

File metadata and controls

147 lines (94 loc) · 10.9 KB
title description author ms.author ms.date ms.topic ms.service services
Continuous integration and continuous deployment to Azure IoT Edge devices - Azure IoT Edge
Set up continuous integration and continuous deployment using YAML - Azure IoT Edge with Azure DevOps, Azure Pipelines
PatAltimore
patricka
08/20/2019
conceptual
iot-edge
iot-edge

Continuous integration and continuous deployment to Azure IoT Edge devices

[!INCLUDE iot-edge-version-all-supported]

You can easily adopt DevOps with your Azure IoT Edge applications with the built-in Azure IoT Edge tasks in Azure Pipelines. This article demonstrates how you can use Azure Pipelines to build, test, and deploy Azure IoT Edge modules using YAML. Alternatively, you can use the classic editor.

Diagram - CI and CD branches for development and production

In this article, you learn how to use the built-in Azure IoT Edge tasks for Azure Pipelines to create build and release pipelines for your IoT Edge solution. Each Azure IoT Edge task added to your pipeline implements one of the following four actions:

Action Description
Build module images Takes your IoT Edge solution code and builds the container images.
Push module images Pushes module images to the container registry you specified.
Generate deployment manifest Takes a deployment.template.json file and the variables, then generates the final IoT Edge deployment manifest file.
Deploy to IoT Edge devices Creates IoT Edge deployments to one or more IoT Edge devices.

Unless otherwise specified, the procedures in this article do not explore all the functionality available through task parameters. For more information, see the following resources:

Prerequisites

  • An Azure Repos repository. If you don't have one, you can Create a new Git repo in your project. For this article, we created a repository called IoTEdgeRepo.

  • An IoT Edge solution committed and pushed to your repository. If you want to create a new sample solution for testing this article, follow the steps in Develop and debug modules in Visual Studio Code or Develop and debug C# modules in Visual Studio. For this article, we created a solution in our repository called IoTEdgeSolution, which has the code for a module named filtermodule.

    For this article, all you need is the solution folder created by the IoT Edge templates in either Visual Studio Code or Visual Studio. You don't need to build, push, deploy, or debug this code before proceeding. You'll set up those processes in Azure Pipelines.

    Know the path to the deployment.template.json file in your solution, which is used in several steps. If you're unfamiliar with the role of the deployment template, see Learn how to deploy modules and establish routes.

    [!TIP] If you're creating a new solution, clone your repository locally first. Then, when you create the solution you can choose to create it directly in the repository folder. You can easily commit and push the new files from there.

  • A container registry where you can push module images. You can use Azure Container Registry or a third-party registry.

  • An active Azure IoT hub with at least two IoT Edge devices for testing the separate test and production deployment stages. You can follow the quickstart articles to create an IoT Edge device on Linux or Windows

For more information about using Azure Repos, see Share your code with Visual Studio and Azure Repos

Create a build pipeline for continuous integration

In this section, you create a new build pipeline. You configure the pipeline to run automatically when you check in any changes to the sample IoT Edge solution and to publish build logs.

  1. Sign in to your Azure DevOps organization (https://dev.azure.com/{your organization}) and open the project that contains your IoT Edge solution repository.

    Open your DevOps project

  2. From the left pane menu in your project, select Pipelines. Select Create Pipeline at the center of the page. Or, if you already have build pipelines, select the New pipeline button in the top right.

    Create a new build pipeline using the New pipeline button

  3. On the Where is your code? page, select Azure Repos Git YAML. If you wish to use the classic editor to create your project's build pipelines, see the classic editor guide.

  4. Select the repository you are creating a pipeline for.

    Select the repository for your build pipeline

  5. On the Configure your pipeline page, select Starter pipeline. If you have a preexisting Azure Pipelines YAML file you wish to use to create this pipeline, you can select Existing Azure Pipelines YAML file and provide the branch and path in the repository to the file.

    Select Starter pipeline or Existing Azure Pipelines YAML file to begin your build pipeline

  6. On the Review your pipeline YAML page, you can select the default name azure-pipelines.yml to rename your pipeline's configuration file.

    Select Show assistant to open the Tasks palette.

    Select Show assistant to open Tasks palette

  7. To add a task, place your cursor at the end of the YAML or wherever you want the instructions for your task to be added. Search for and select Azure IoT Edge. Fill out the task's parameters as follows. Then, select Add.

    Parameter Description
    Action Select Build module images.
    .template.json file Provide the path to the deployment.template.json file in the repository that contains your IoT Edge solution.
    Default platform Select the appropriate operating system for your modules based on your targeted IoT Edge device.

    For more information about this task and its parameters, see Azure IoT Edge task.

    Use Tasks palette to add tasks to your pipeline

    [!TIP] After each task is added, the editor will automatically highlight the added lines. To prevent accidental overwriting, deselect the lines and provide a new space for your next task before adding additional tasks.

  8. Repeat this process to add three more tasks with the following parameters:

    • Task: Azure IoT Edge

      Parameter Description
      Action Select Push module images.
      Container registry type Use the default type: Azure Container Registry.
      Azure subscription Select your subscription.
      Azure Container Registry Choose the registry that you want to use for the pipeline.
      .template.json file Provide the path to the deployment.template.json file in the repository that contains your IoT Edge solution.
      Default platform Select the appropriate operating system for your modules based on your targeted IoT Edge device.

      For more information about this task and its parameters, see Azure IoT Edge task.

    • Task: Copy Files

      Parameter Description
      Source Folder The source folder to copy from. Empty is the root of the repo. Use variables if files are not in the repo. Example: $(agent.builddirectory).
      Contents Add two lines: deployment.template.json and **/module.json.
      Target Folder Specify the variable $(Build.ArtifactStagingDirectory). See Build variables to learn about the description.

      For more information about this task and its parameters, see Copy files task.

    • Task: Publish Build Artifacts

      Parameter Description
      Path to publish Specify the variable $(Build.ArtifactStagingDirectory). See Build variables to learn about the description.
      Artifact name Specify the default name: drop
      Artifact publish location Use the default location: Azure Pipelines

      For more information about this task and its parameters, see Publish build artifacts task.

  9. Select Save from the Save and run dropdown in the top right.

  10. The trigger for continuous integration is enabled by default for your YAML pipeline. If you wish to edit these settings, select your pipeline and click Edit in the top right. Select More actions next to the Run button in the top right and go to Triggers. Continuous integration shows as enabled under your pipeline's name. If you wish to see the details for the trigger, check the Override the YAML continuous integration trigger from here box.

    To review your pipeline's trigger settings, see Triggers under More actions

Continue to the next section to build the release pipeline.

[!INCLUDE iot-edge-create-release-pipeline-for-continuous-deployment]

[!INCLUDE iot-edge-verify-iot-edge-continuous-integration-continuous-deployment]

Next steps