You have an Azure App Service plan that hosts an Azure App Service named App1.
You configure one production slot and four staging slots for App1.
You need to allocate 10 percent of the traffic to each staging slot and 60 percent of the traffic to the production slot.
What should you add to App1?
Click on the arrows to vote for the correct answer
A. B. C. D.A
Besides swapping, deployment slots offer another killer feature: testing in production. Just like the name suggests, using this, you can actually test in production.
This means that you can route a specific percentage of user traffic to one or more of your deployment slots.
Example:
To allocate traffic between the production slot and staging slots in an Azure App Service, you need to configure traffic routing rules. The traffic routing rules specify how much traffic should be routed to each slot based on a percentage value.
To allocate 10% of the traffic to each staging slot and 60% of the traffic to the production slot, you need to perform the following steps:
After you have configured the traffic routing rules, the Azure App Service will automatically route traffic based on the percentage values that you specified. 60% of the traffic will be directed to the production slot, and 10% of the traffic will be directed to each staging slot.
Therefore, the correct answer to the question is option A, "Slots to the Testing in production blade".