自定义配置脚本 Azure 资源管理器模板
Custom configuration script azure resource manager template
我正在使用 ARM 模板创建 azure marketplace 报价。我正在使用我的 ARM 模板创建一个 Linux 虚拟机。我需要 运行 自定义配置脚本 post 部署。我遵循了 azure quickstart repo 中提供的示例。
https://github.com/Azure/azure-quickstart-templates/tree/master/100-marketplace-sample
当我尝试验证模板时,出现以下错误。
{ "error": {
"additionalInfo": [
{
"info": {
"lineNumber": 166,
"linePosition": 28,
"path": "resources[1].type"
},
"type": "TemplateViolation"
}
],
"code": "InvalidTemplate",
"details": null,
"message": "Deployment template validation failed: 'The template resource 'configScript' at line '166' and column '28' is not valid. The type property is invalid. Please see https://aka.ms/arm-template/#resources for usage details.'.",
"target": null
},
"properties": 空
}
我的模板的脚本部分看起来像
{
"type": "extensions",
"name": "configScript",
"apiVersion": "2018-04-01",
"location": "[parameters('location')]",
"dependsOn": [
"[parameters('vmName')]"
],
"properties": {
"publisher": "Microsoft.Azure.Extensions",
"type": "CustomScript",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"fileUris": [
"[uri(parameters('_artifactsLocation'), concat('scripts/copyfilefromazure.sh', parameters('_artifactsLocationSasToken')))]"
]
},
"protectedSettings": {
"commandToExecute": "[concat('bash ', variables('scriptFileName'), ' ', variables('scriptArgs'))]"
}
}
},
错误意味着它是一个嵌套资源(配置对象嵌套在站点对象中)名称需要反映这一点。因此,名称应该类似于 virtualMachines/extensions
而不是配置。我还需要添加 dependsOn
部分。
"dependsOn": ["[concat('Microsoft.Compute/virtualMachines/', concat(variables('vmName'),copyindex()))]"]
这是验证成功的模板:
{
"name": "config-app",
"type": "Extensions",
"location": "[resourceGroup().location]",
"apiVersion": "2019-03-01",
"dependsOn": [
"[concat('Microsoft.Compute/virtualMachines/', concat(variables('vmName'),copyindex()))]"
],
"tags": {
"displayName": "config-app"
},
"properties": {
"publisher": "Microsoft.Azure.Extensions",
"type": "CustomScript",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"skipDos2Unix":false,
"timestamp":123456789
},
"protectedSettings": {
"commandToExecute": "<command-to-execute>",
"script": "<base64-script-to-execute>",
"storageAccountName": "<storage-account-name>",
"storageAccountKey": "<storage-account-key>",
"fileUris": ["https://.."]
}
}
}
更多详情,您可以阅读这篇文章Use the Azure Custom Script Extension Version 2 with Linux virtual machines。
我正在使用 ARM 模板创建 azure marketplace 报价。我正在使用我的 ARM 模板创建一个 Linux 虚拟机。我需要 运行 自定义配置脚本 post 部署。我遵循了 azure quickstart repo 中提供的示例。
https://github.com/Azure/azure-quickstart-templates/tree/master/100-marketplace-sample 当我尝试验证模板时,出现以下错误。
{ "error": {
"additionalInfo": [
{
"info": {
"lineNumber": 166,
"linePosition": 28,
"path": "resources[1].type"
},
"type": "TemplateViolation"
}
],
"code": "InvalidTemplate",
"details": null,
"message": "Deployment template validation failed: 'The template resource 'configScript' at line '166' and column '28' is not valid. The type property is invalid. Please see https://aka.ms/arm-template/#resources for usage details.'.",
"target": null
},
"properties": 空
}
我的模板的脚本部分看起来像
{
"type": "extensions",
"name": "configScript",
"apiVersion": "2018-04-01",
"location": "[parameters('location')]",
"dependsOn": [
"[parameters('vmName')]"
],
"properties": {
"publisher": "Microsoft.Azure.Extensions",
"type": "CustomScript",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"fileUris": [
"[uri(parameters('_artifactsLocation'), concat('scripts/copyfilefromazure.sh', parameters('_artifactsLocationSasToken')))]"
]
},
"protectedSettings": {
"commandToExecute": "[concat('bash ', variables('scriptFileName'), ' ', variables('scriptArgs'))]"
}
}
},
错误意味着它是一个嵌套资源(配置对象嵌套在站点对象中)名称需要反映这一点。因此,名称应该类似于 virtualMachines/extensions
而不是配置。我还需要添加 dependsOn
部分。
"dependsOn": ["[concat('Microsoft.Compute/virtualMachines/', concat(variables('vmName'),copyindex()))]"]
这是验证成功的模板:
{
"name": "config-app",
"type": "Extensions",
"location": "[resourceGroup().location]",
"apiVersion": "2019-03-01",
"dependsOn": [
"[concat('Microsoft.Compute/virtualMachines/', concat(variables('vmName'),copyindex()))]"
],
"tags": {
"displayName": "config-app"
},
"properties": {
"publisher": "Microsoft.Azure.Extensions",
"type": "CustomScript",
"typeHandlerVersion": "2.0",
"autoUpgradeMinorVersion": true,
"settings": {
"skipDos2Unix":false,
"timestamp":123456789
},
"protectedSettings": {
"commandToExecute": "<command-to-execute>",
"script": "<base64-script-to-execute>",
"storageAccountName": "<storage-account-name>",
"storageAccountKey": "<storage-account-key>",
"fileUris": ["https://.."]
}
}
}
更多详情,您可以阅读这篇文章Use the Azure Custom Script Extension Version 2 with Linux virtual machines。