簡體   English   中英

無法使用 ARM 模板為 appservice 計划添加 autoscaleout 屬性

[英]Not able to add autoscaleout property for appservice plan using ARM template

我已經創建了 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'))]"
  ]
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM