I am deploying a very simple Azure cloud service application.
Trying to get Autoscaling work so that I can plan up / down scaling based on time of day.
Install and configure everything, deploy to Azure without any problems, however, my rules do not seem to be respected.
I currently have the following: I expect the service will work in at least 2 instances, but it always stays at 1.
<rules xmlns="http://schemas.microsoft.com/practices/2011/entlib/autoscaling/rules" enabled="true"> <constraintRules> <rule name="Default" description="Default rules" enabled="true" rank="1"> <actions> <range min="2" max="8" target="MyRoleName"/> </actions> </rule> </constraintRules> </rules>
I feel that I am missing something really simple, but I donβt know what?
thanks
source share