gpt4 book ai didi

azure - 无法使用 ARM 模板为应用程序服务计划添加自动扩展属性

转载 作者:行者123 更新时间:2023-12-05 02:57:18 26 4
gpt4 key购买 nike

我使用上面的模板作为引用创建了 ARM 模板来添加横向扩展属性,如下所示

 {
"type": "Microsoft.Web/serverfarms",
"sku": {
"name": "S1",
"tier": "Standard",
"size": "S1",
"family": "S",
"capacity": 1
},
"kind": "app",
"name": "[variables('ServerFarm_gateway_name')]",
"apiVersion": "2016-09-01",
"location": "[resourceGroup().location]",
"resources": [
{
"name": "[concat(variables('ServerFarm_gateway_name'),'-autoscaleout')]",
"type": "Microsoft.Insights/autoscaleSettings",
"apiVersion": "2015-04-01",
"location": "[resourceGroup().location]",
"dependsOn": [
"[concat('Microsoft.Web/serverfarms/', variables('ServerFarm_gateway_name'))]"
],
"properties": {
"name": "[concat(variables('ServerFarm_gateway_name'),'-autoscaleout')]",
"enabled": true,
"targetResourceLocation": "[resourceGroup().location]",
"profiles": [
{
"name": "Auto created scale condition 1",
"capacity": {
"minimum": "1",
"maximum": "5",
"default": "1"
}
},
{
"name": "{\"name\":\"Auto created scale condition\",\"for\":\"Auto created scale condition 1\"}",
"capacity": {
"minimum": "1",
"maximum": "5",
"default": "1"
}
}
]
}
}
],
"dependsOn": []
}

使用 VSTS 管道部署时抛出错误。

##[error]At least one resource deployment operation failed. Please list deployment operations for 
Please see https://aka.ms/DeployOperations for usage details.
##[error]Details:
##[error]BadRequest: {
"code": "UnsupportedRequestContent",
"message": "Request content is not well formed or supported."
}
##[error]Task failed while creating or updating the template deployment.

当我从模板中删除资源部分时,就没有问题了。

最佳答案

我相信您的问题在于您对自动缩放臂模板如何工作的理解。这些应该被定义为顶级资源并引用它所适用的资源。

您的模板应如下所示:

 { 
"type": "microsoft.insights/autoscalesettings",
"name": "[concat(variables('ServerFarm_gateway_name'),'-autoscaleout')]",
"apiVersion": "2015-04-01",
"location": "[resourceGroup().location]",
"properties": {
"profiles": [
{
"name": "Auto created scale condition 1",
"capacity": {
"minimum": "1",
"maximum": "5",
"default": "1"
}
}
],
"enabled": true,
"targetResourceUri": "[resourceId('Microsoft.Web/serverfarms', variables('ServerFarm_gateway_name'))]"
},
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', variables('ServerFarm_gateway_name'))]"
]
}

关于azure - 无法使用 ARM 模板为应用程序服务计划添加自动扩展属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59860287/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com