34
loading...
This website collects cookies to deliver better user experience
az vmss create \
--name YOUR_POOL_NAME \
--resource-group RES_GROUP \
--image UbuntuLTS \
--vm-sku Standard_D2_v3 \
--storage-sku StandardSSD_LRS \
--authentication-type SSH \
--instance-count 2 \
--disable-overprovision \
--upgrade-policy-mode manual \
--single-placement-group false \
--platform-fault-domain-count 1 \
--load-balancer ""
--disable-overprovision
and --upgrade-policy-mode manual
are required.--load-balancer ""
, Azure Pipelines doesn't require a load balancer to route jobs to the agents in the scale set agent pool, but configuring a load balancer is one way to get an IP address for your scale set agents that you could use for firewall rules.To configure a scale set agent pool, you must have either Owner or User Access Administrator permissions on the Azure selected subscription. If you have one of these permissions but get an error when you choose Authorize, it could be due to the fact that your user has only guest permission in the directory, or that it is not authorized to add applications in the directory. Either way, talk to your AAD admin.
Invalid Service Endpoint with Id <guid> and Scope <guid>
To see a Complete Demo of scaling agents in and out, check this section of the video
34