Andrew Stakhov
Andrew Stakhov

Reputation: 1135

Using azure app service deployment slots to run different apps?

Deployment slots on azure app service are really intended to run new versions of same app for blue/green deploy strategies. The question I have is it against the rules to run an app with multiple components (front end/back end) to put them into different deployment. On Standard plan, I can load up to 5 services into a single azure app service plan. This would be great as cost saving measure in non prod environments where a single instance of each service is just fine. The question I have is a) is this against the rules? b) are there any pitfalls with this strategy?

Thanks

Upvotes: 1

Views: 1266

Answers (1)

Martin Brandl
Martin Brandl

Reputation: 59001

You can host as many web apps on your app service plan as you want. You just have to ensure they don't consume to much CPU or memory. So I wouldn't use deployment slots.

Upvotes: 1

Related Questions