Staging with a multi-tenant app in Azure Cloud Services

旧时模样 提交于 2019-12-13 02:29:06

问题


I'm reviewing the following article on staging Cloud Services:

http://www.windowsazure.com/en-us/develop/net/common-tasks/staging-deployment/

I'm trying to define a deployment strategy for application updates and it seems like the above works wonderfully for non-multi-tenant apps. In my case, I have a dependency on the VIP staying static, as it is used in my A records because I need wildcard support - *.xyz.com > VIP.

What other alternatives are there to achieve seamless app updates? Or - should I be using wildcard CNAMEs instead? The latter will introduce more complications as my current DNS provider (GoDaddy) does not support wildcard CNAME records... so Route53 or something like that would have to be used. Any guidance here would be fantastic.


回答1:


Using staging deployments and VIP swap is the only supported way to have seamless updates.

Sometimes you will be advised to make in-place upgrades - that's a Bad Idea™ because once it starts and breaks at least some of your instances you can't revert it and so you cannot rely on it in production use. Yes, it can work for quickly testing changes in a testing environment but it's not for serious business.

Yes, you have to use CNAME because your VIPs will change on each "swap VIP" redeployment. If you feel like you need wildcards - you have two options - ether find a provider who has them or redesign your application so that wildcards are not needed.



来源:https://stackoverflow.com/questions/20850585/staging-with-a-multi-tenant-app-in-azure-cloud-services

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