通过ARM模板部署时,Azure功能分段插槽交换错误

时间:2018-08-22 04:38:15

标签: azure azure-devops azure-functions azure-resource-manager azure-pipelines-release-pipeline

我已经使用ARM模板创建了一个Azure功能应用程序(消费计划)。 在我部署代码并执行交换操作(VSTS任务)之后,生产插槽和登台插槽均具有新代码。但是我希望交换操作后登台插槽具有旧代码,这是Azure函数中的已知错误吗?还是我需要做些额外的事情

"resources": [
    {
      "name": "CampaignSyncJob",
      "type": "Microsoft.Resources/deployments",
      "apiVersion": "2016-09-01",
      "dependsOn": [],
      "properties": {
        "mode": "Incremental",
        "templateLink": {
          "uri": "[concat(parameters('artifactsLocation'), '/', variables('linkedTemplateFolderName'), '/', variables('webAppTemplateFileName'), parameters('artifactsLocationSasToken'))]",
          "contentVersion": "1.0.0.0"
        },
        "parameters": {
          "appServicePlanName": {
            "value": "[reference('ReleaseParams').outputs.webApp.value.appServicePlanName]"
          },
          "appServiceName": {
            "value": "[reference('ReleaseParams').outputs.webApp.value.appServiceName]"
          },
          "artifactsLocation": {
            "value": "[parameters('artifactsLocation')]"
          },
          "artifactsLocationSasToken": {
            "value": "[parameters('artifactsLocationSasToken')]"
          },
          "packageFolder": {
            "value": "CampaignSyncJob"
          },
          "packageFileName": {
            "value": "package.zip"
          },
          "appSettings": {
            "value": {
              "AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
              "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
              "WEBSITE_CONTENTSHARE": "[toLower(variables('appServiceName'))]",
              "FUNCTIONS_EXTENSION_VERSION": "~2",
              "WEBSITE_NODE_DEFAULT_VERSION": "6.5.0",
              "MSDEPLOY_RENAME_LOCKED_FILES": "1",
              "AppInsights_InstrumentationKey": "[variables('appInsightsInstrumentationKey')]",
              "StickySetting": "StuckToProduction1"
            }
          },
          "slotAppSettings": {
            "value": {
              "AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
              "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storageAccountName'), ';AccountKey=', listKeys(variables('storageAccountid'),'2015-05-01-preview').key1)]",
              "WEBSITE_CONTENTSHARE": "[toLower(variables('appServiceName'))]",
              "FUNCTIONS_EXTENSION_VERSION": "~2",
              "WEBSITE_NODE_DEFAULT_VERSION": "6.5.0",
              "MSDEPLOY_RENAME_LOCKED_FILES": "1",
              "AppInsights_InstrumentationKey": "[variables('appInsightsInstrumentationKey')]",
              "StickySetting": "StuckToStaging1"
            }
          },
          "slotName": {
            "value": "[reference('ReleaseParams').outputs.webApp.value.appServiceSlotName]"
          },
          "appServiceLocation": {
            "value": "[reference('ReleaseParams').outputs.common.value.location]"
          },
          "slotSpecificAppSettingKeys": {
            "value": [
              "StickySetting"
            ]
          }
        }
      }
    },

部署功能应用程序的链接模板

{
      "condition": "[parameters('deployOnStagingSlot')]",
      "apiVersion": "2015-08-01",
      "name": "[concat(parameters('appServiceName'), '/', parameters('slotName'))]",
      "type": "Microsoft.Web/sites/slots",
      "location": "[parameters('appServiceLocation')]",
      "properties": {
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms', parameters('appServicePlanName'))]"
      },
      "dependsOn": [
      ],
      "resources": [
        {
          "condition": "[parameters('deployOnStagingSlot')]",
          "name": "appsettings",
          "type": "config",
          "apiVersion": "2015-08-01",
          "dependsOn": [
            "[concat('Microsoft.Web/sites/', parameters('appServiceName'), '/slots/', parameters('slotName'))]",
            "[concat('Microsoft.Web/sites/', parameters('appServiceName'), '/slots/', parameters('slotName'), '/Extensions/MSdeploy')]"
          ],
          "properties": "[parameters('slotAppSettings')]"
        },
        {
          "condition": "[parameters('deployOnStagingSlot')]",
          "name": "MSDeploy",
          "type": "extensions",
          "location": "[parameters('appServiceLocation')]",
          "apiVersion": "2015-08-01",
          "dependsOn": [
            "[concat('Microsoft.Web/sites/', parameters('appServiceName'), '/slots/', parameters('slotName'))]"
          ],
          "properties": {
            "packageUri": "[concat(parameters('artifactsLocation'), '/', parameters('packageFolder'), '/', parameters('packageFileName'), parameters('artifactsLocationSasToken'))]",
            "setParameters": {
              "IIS Web Application Name": "[parameters('slotName')]"
            }
          }
        }
      ]
    }

1 个答案:

答案 0 :(得分:0)

嗯,我知道要在功能应用程序内交换插槽,需要将应用程序设置WEBSITE_CONTENTSHARE更改为特定于插槽的设置。

有关此解决方案以及有关多个插槽的其他ARM问题,请查看Gary Lumsden

的博客。