0

看起来 Azure Powershell 有插槽选项,但 Azure CLI 的 ARM 模式缺少这些功能。

  1. 如何设置 ARM 模板来创建部署槽?
  2. 如何使用 Azure CLI 为特定插槽部署 ARM 模板

参考: https ://azure.microsoft.com/en-us/documentation/articles/web-sites-staged-publishing/

4

1 回答 1

0

看起来$ azure group deployment create缺少 slot 选项,但它存在于$ azure webapp create <resource-group> <name> --slot <slot-name> -l <location> -p <server-farm-plan-id>.

可能我们应该先创建 webapp,然后使用常规 ARM 模板通过在以下 ARM 模板参数文件中指定参数值 webSiteName = 来更新特定插槽。

https://github.com/Azure/azure-quickstart-templates/blob/master/201-web-app-java-tomcat/azuredeploy.parameters.json

于 2016-05-24T21:27:10.150 回答