Cloud service for webrole running in ARM Resource group

拈花ヽ惹草 提交于 2019-12-01 13:43:42

Azure Resource Manager Web apps rely on the concept of App Service Plans, rather than cloud services. Basically this is the underlying VM(s) that the service runs on. You can specify the size and number of servers that make up the App Service plan, and then deploy on to those as a single unit.

You create an App service plan, then run web / worker roles inside that (as well as Logic, API, Functions)

As far as Web / Worker roles are concerned, App Service Plans do not draw a distinction between the two. You simply deploy code to it and it will run it however it is packaged. See here

The concept of cloud services simply don't exist within the Azure Resource Management model.

You can find a template for deploying a Web App here

Cloud Services have been around since the beginning of Azure. To the deploy or manage them, you have to use the old APIs (Azure Service Management). As far as I know, they won't be migrated to the new APIs (Azure Resource Manager), but you could use Virtual Machine Scale Sets instead.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!