pmmaga
pmmaga

Reputation: 410

Azure Websites and VIP Swaping

I'm currently using Azure Websites to deploy my app. I'm currently using two websites each listening to a different branch of my GIT. As seen here.

Now, for it to be perfect, I'm only missing a way to quickly switch between these 2 instances so I could:

Anyone has accomplished anything like this?

Thanks!

Upvotes: 0

Views: 1163

Answers (2)

Erv Walter
Erv Walter

Reputation: 13788

VIP swapping between a production and a staging deployment is now possible with Azure Web Sites.

It works similarly to how VIP swapping works with Azure Cloud Services.

You can find details on how to set this up and use it in this blog post.

Upvotes: 3

Igorek
Igorek

Reputation: 15850

I'd imagine that you'd need to find a DNS provider that could give you access to DNS mapping via an API. This way, you could use a script to call the DNS and swap the C-Names around.

This Stackoverflow post talks about DNS providers that allow an API access: What DNSs have API access?

Upvotes: 0

Related Questions