6b2bfa2ebb
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days. |
||
---|---|---|
doc | ||
src | ||
.gitignore | ||
CHANGELOG.md | ||
LICENSE.txt | ||
Readme.md | ||
SECURITY.md | ||
ThirdPartyNotices.txt | ||
checkstyle.xml | ||
pom.xml |
Readme.md
Azure IoT Edge Plugin
Azure IoT Edge Plugin makes it easy to setup a CI/CD pipeline for developing an IoT Edge solution on Jenkins, by providing following functionalities:
- Continuous integration(build and push docker image)
- Continuous deployment(create Edge deployment on Azure)
Feedback
-
If you encounter any bugs with this plugin please file an issue in Jenkins JIRA under component
azure-iot-edge-plugin
. -
You can also contact this Email group for issues
vsciet@microsoft.com
Overview
This is the work flow for Azure IoT Edge solution CI/CD pipeline.
How to Install
Prerequisites
Install following tools on Jenkins host.
- Docker
- Azure CLI
- Azure CLI IoT Extension
- iotedgedev
pip install iotedgedev
Install extension
You can install/update this plugin in Jenkins update center (Manage Jenkins -> Manage Plugins, search Azure IoT Edge Plugin).
You can also manually install the plugin if you want to try the latest feature before it's officially released. To manually install the plugin:
- Clone the repo and build. (The integration test need about 30 minutes to run, you can skip by following command):
mvn package -Dmaven.test.skip=true
- Open your Jenkins dashboard, go to Manage Jenkins -> Manage Plugins.
- Go to Advanced tab, under Upload Plugin section, click Choose File.
- Select
azure-iot-edge.hpi
intarget
folder of your repo, click Upload. - Restart your Jenkins instance after install is completed.
Before using extension
To use this plugin to build and deploy Azure IoT Edge solution, first you need to have an Azure Service Principal in your Jenkins instance.
- Create an Azure Service Principal through Azure CLI or Azure portal. Make sure in order to use Service Principal for CI/CD, you need to create the role at least
Contributor
. Otherwise it doesn't have enough permission to create deployment on IoT Hub. - Open Jenkins dashboard, go to Credentials, add a new
Microsoft Azure Service Principal
with the credential information you just created. - If you use common docker registry credential(like docker hub), you may also add a new
Username with password
credential. - Existing Azure IoT Hub and docker registry are needed in CI/CD.
Create a project
In Jenkins, there are two types of project.
- Freestyle project: Config through UI
- Pipeline project: Config through code
Create a Freestyle project
Build and Push task
- In
Build
section, clickAdd build step
, then chooseAzure IoT Edge Build and Push
. - Set
Solution Root Path
, in most cases it's where deployment.template.json located. - Set
Bypass modules
, it is the list of modules to bypass when building, use comma delimited list of modules. Example "ModuleA,ModuleB". You can leave this field empty to build all modules. - Choose docker registry in
Docker Credential Configuration
.
- For Azure Container Registry, you need to use the Azure Service Principal created above to authenticate.
- For other types of registry(docker hub), you need to specify
Docker registry URL
and then a credential with typeUsername with password
.
Deploy task
- In
Build
section, clickAdd build step
, then chooseAzure IoT Edge Deploy
. - Set
Solution Root Path
, in most cases it's where deployment.template.json located. - Choose Azure IoT Hub.
- Set deployment configurations. You can click
help
button after the input box to get detailed explanation of the item.
Create a Pipeline project
You can also use this plugin in pipeline (Jenkinsfile). Here are some samples to use the plugin in pipeline script, there is also an example for pipeline project.
Project config on Jenkins
Customize pipeline: Build and Push task
Use Azure Container Registry
azureIoTEdgePush dockerRegistryType: 'acr', acrName: '<acr_name>', bypassModules: '', azureCredentialsId: '<azure_credential_id>', resourceGroup: '<resource_group_name>', rootPath: '<solution_root_path>'
Use common Container Registry
azureIoTEdgePush dockerRegistryType: 'common', dockerRegistryEndpoint: [credentialsId: '<credential_id>', url: '<url>'], bypassModules: '', resourceGroup: '<resource_group_name>', rootPath: '<solution_root_path>'
Customize pipeline: Deploy task
For single device
azureIoTEdgeDeploy azureCredentialsId: '<azure_credential_id>', deploymentId: '<deployment_id>', deploymentType: 'single', deviceId: '<device_id>', iothubName: '<iothub_name>', priority: '<priority>', resourceGroup: '<resource_group_name>', rootPath: '<solution_root_path>', targetCondition: ''
For multiple devices using target condition
azureIoTEdgeDeploy azureCredentialsId: '<azure_credential_id>', deploymentId: '<deployment_id>', deploymentType: 'multiple', targetCondition: '<target_condition>', iothubName: '<iothub_name>', priority: '<priority>', resourceGroup: '<resource_group_name>', rootPath: '<solution_root_path>', targetCondition: ''
For advanced options, you can use Jenkins Pipeline Syntax tool to generate a sample script.
FAQ
Does ARM platform supported?
If you would like to build ARM platform image, you'll need to setup an ARM build agent. And for the Prerequisites, they also need to be setup on build agent.
Data/Telemetry
Azure IoT Edge Plugin for Jenkins collects usage data and sends it to Microsoft to help improve our products and services. Read our privacy statement to learn more.
You can turn off usage data collection in Manage Jenkins -> Configure System -> Azure -> Help make Azure Jenkins plugins better by sending anonymous usage statistics to Azure Application Insights.