Reputation: 157
My understanding so far on PaaS deployment using WebRoles or Worker Roles-
Any information will be of great help.
Upvotes: 1
Views: 926
Reputation: 12228
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
Upvotes: 0
Reputation: 626
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.
Upvotes: 1