每个人,
有人可以帮助我使用ARM模板部署WebJobs吗?
谢谢, 拉贾拉姆。
答案 0 :(得分:10)
David Ebbo的template shared展示了如何使用Arm模板部署Webjobs。
在此模板中,触发的webjob链接到由同一模板部署的网站。 webjob是jobCollection的一部分。这个jobCollection使用" dependsOn"链接到它的父网站。节点
{
"apiVersion": "2014-08-01-preview",
"name": "[parameters('jobCollectionName')]",
"type": "Microsoft.Scheduler/jobCollections",
"dependsOn": [
"[resourceId('Microsoft.Web/Sites', parameters('siteName'))]"
],
"location": "[parameters('siteLocation')]",
"properties": {
"sku": {
"name": "standard"
},
"quota": {
"maxJobCount": "10",
"maxRecurrence": {
"Frequency": "minute",
"interval": "1"
}
}
},
"resources": [
{
"apiVersion": "2014-08-01-preview",
"name": "DavidJob",
"type": "jobs",
"dependsOn": [
"[resourceId('Microsoft.Scheduler/jobCollections', parameters('jobCollectionName'))]"
],
"properties": {
"startTime": "2015-02-10T00:08:00Z",
"action": {
"request": {
"uri": "[concat(list(resourceId('Microsoft.Web/sites/config', parameters('siteName'), 'publishingcredentials'), '2014-06-01').properties.scmUri, '/api/triggeredjobs/MyScheduledWebJob/run')]",
"method": "POST"
},
"type": "http",
"retryPolicy": {
"retryType": "Fixed",
"retryInterval": "PT1M",
"retryCount": 2
}
},
"state": "enabled",
"recurrence": {
"frequency": "minute",
"interval": 1
}
}
}
]
}
问候,
答案 1 :(得分:8)
其他答案涵盖了在Azure中创建作业的模板方面,但仍然存在上传webjob可执行文件的问题。
假设此部署是更大的Azure网站部署的一部分,您只需在您的网站分发中包含您的webjob可执行文件。
根据kudu documentation,放置EXE的惯例如下:
要部署已触发的作业,请将二进制文件复制到:app_data \ jobs \ triggered \ {job name}
要将二进制文件部署到连续作业,请将其复制到:app_data \ jobs \ continuous \ {job name}
答案 2 :(得分:1)
Azure Scheduler在2019年12月过时,之后,所有Scheduler作业集合和作业停止运行,这就是为什么不再使用Azure logic apps的Scheduler Job Collection的原因。 -Migrate Azure WebJobs from Azure Scheduler to Azure Logic Apps。
答案 3 :(得分:0)
这是一个deploys an Azure Web App with a Schedule Job。
的Azure快速入门模板此外,您是否看过Azure Resource Manager项目类型的Visual Studio 2015 Azure SDK支持?它包含UI for more easily authoring ARM Templates directly from within Visual Studio。