Is it possible to have deployment slots with different service plans in Azure WebApps? -


i've worked lot in past azure cloud services web roles, bit new azure websites/webapps. loved concept of multiple deployment slots define webapps, enables useful cd scenarios. in case, have test->preprod->prod slots defined. good!

is possible specify different pricing tiers or number of instances each of environments? seem share pricing tier of service plan. possible define different number of instances each one?

well, multiple deployment slots available in standard sku (the highest one): http://azure.microsoft.com/en-us/pricing/details/websites/

so, no. require not possible.

you can mitigate not using staged publishing. can instead, have different service plans different web apps. can link each of web apps different branch of repository (https://azure.microsoft.com/en-us/documentation/articles/web-sites-deploy/). when push uat branch - deployment in uat web site. when push relese branch, deployment releas web site , on.


Comments

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

python - How to remove the Xframe Options header in django? -