Virtual machine scale sets are an Azure Compute resource you can use to deploy and manage a set of identical VMs. With all VMs configured the same, VM scale sets are designed to support true autoscale – no pre-provisioning of VMs are required – and as such make it easier to build large-scale services targeting big compute, big data, and containerized workloads.
Questions tagged [azure-vm-scale-set]
406 questions
0
votes
1 answer
Error creating AutoScale Setting for VMSS the requested metric not found in namespace 'telegraf/mem'
The intermittent issue where Terraform is unable to create scaling rules on the virtual machine scale-sets because the metrics it requires for the rules are not found.
The issue is usually fixed by rerunning the deployment, but is there a way I can…

donal
- 163
- 2
- 4
- 13
0
votes
1 answer
How to increase size of Ubuntu azure VM scale set
So my client has created a Virtual machine Scale Set in Azure which has a OS disk of Linux of 30 GB for Ubuntu.
How can I increase it to say 1024 GB without loosing any data
Orchestration is
uniform
In properties it said
Empherical disk
N/A

aaradhy
- 31
- 2
0
votes
1 answer
Alert rules Condition
I'm looking through the azure condition options.
One of the options is "Checks Failed Percent". It's an azure alert rule on a VM (Metric)
Can't find any data online, what will trigger the rule?
Let's say I have it like this: Whenever the average…

Daniel
- 97
- 1
- 8
0
votes
1 answer
Azure forcing to create Standard LB while Basic LB is sufficient
I have referred to this link but that solution does not work.
Basic Load Balancer with scale set "Virtual Machine Scale Set cannot use a basic SKU load balancer when singlePlacementGroup property is false (lar)."
Issue:
Azure forcing to create a…

Venkat
- 3
- 1
0
votes
0 answers
Replace self hosted agents with virtual machine scale agents?
I have some troubles in understanding the capabilities of the Azure virtual machine scale set agents.
Let's assume I have X vm's for which at the moment I have X corresponding Self hosted agents configured.
I use those self hosted agents in order to…

user2271933
- 491
- 2
- 10
- 25
0
votes
1 answer
how to create vm scaling count 1 dynamically using java script
I have created window-server vm scale set.
I have written one application separately, on my request i want to create vm instance count to 1 ,via manual scale in azure portal ,its possible however i am looking through api i want to create vm instance…

Susanta
- 59
- 1
- 5
0
votes
0 answers
Scaling containers with public IP
I have a legacy application that communicates with a remote server over TCP. The legacy application act as a server and a client at the same time. The port numbers on both sides are established and cannot be changed (they have been hardcoded on both…
0
votes
1 answer
How to get public DNS name of a Virtual Machine in Azure Scale Set
I created VM Scale Set using
az vmss create -n XXX -g XXX --image XXX --public-ip-per-vm --vm-domain-name myvmss --vm-sku Standard_B1s --instance-count 1 --admin-password XXX --admin-username XXX--authentication-type password
And then I am able to…

JoeBloggs
- 89
- 7
0
votes
1 answer
Python task in scale set agent
I'm just porting an azure pipeline from Microsoft-hosted agents to scale set agents (due to hardware requirements) and I'm struggling with installing python as scale set agents seem to be more like self hosted agents.
The (old) pipeline starts like…

sc911
- 1,130
- 10
- 18
0
votes
1 answer
How to change OS disk SKU for Virtual Machine Scale Set (VMSS)?
I create Azure Kubernetes Service by Bicep like below.
param clusterName string = 'kubernetes'
param location string = resourceGroup().location
resource aksCluster 'Microsoft.ContainerService/managedClusters@2022-02-01' = {
name: clusterName
…

ibocon
- 1,352
- 3
- 17
- 40
0
votes
0 answers
Self-hosted Devops Agent unable to connect to KeyVault under Firewall policies
We have a self-hosted agent within a Devops VM Scale Set ["VMSS"] (Hosted in azure).
This VMSS is tied to a VNET (VNET1), and we have separate webapps, sql etc connected via VNET2.
In the middle of these, there is a Keyvault with Firewall/Network…

Stuart.Sklinar
- 3,683
- 4
- 35
- 89
0
votes
1 answer
difference between azure virtual machine and Windows virtual desktop
can anyone brief me about difference between both? Points that I am expecting in answers
can we install Software
Who is the owner
Can I access my local files and software into cloud machine?
any addons from your side will be more than helpful!

nishant damani
- 70
- 5
0
votes
0 answers
Terraform retrieve inbound NAT rules ports
I'm deploying infrastructure on Azure using Terraform,
I'm using modules for a linux scale set an a load balancer and using azurerm_lb_nat_pool in order to have SSH access to the VMs,
I have a need now to retrieve the ports of the NAT rules for…

stas L
- 3
- 2
0
votes
1 answer
how to host nodejs api application on azure virtual machine?
I am new to Azure virtual machine and in hosting world. I have created a nodejs api application, and now I want to host it on virtual machine. I have create a virtual machine too, but I have no idea on how to host my nodejs project which is on my…

jkkCoder
- 17
- 3
0
votes
2 answers
How to configure multiple azurerm providers authenticated via system-assigned managed identity using environment variables
I want to configure two azurerm providers using environment variables
I tried this:
variable "SUBSCRIPTION_ID" {
description = "Subscription ID where resources will be deployed."
}
variable "TENANT_ID" {
description = "Service Principal Tenant…

Krzysztof Madej
- 32,704
- 10
- 78
- 107