Questions tagged [azure-vm-scale-set]

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.

406 questions
1
vote
1 answer

Regarding Deleting public IP without effecting VM

In my current azure platform I have created vm scale set using az cli command. Then by default it created a load balancer and public ip and got associated with it. Now I want to delete this public ip, because I don't have any need with this. I am…
1
vote
0 answers

"Parameter 'osProfile' is not allowed" on attempt to create VMSS from a gallery image in C# - what am I doing wrong?

I am trying to create VM scale set using an existing galery image version (specialized) like this: using Microsoft.Azure.Management.Fluent; using Microsoft.Azure.Management.Compute.Fluent; ... IGalleryImageVersion image = ... IVirtualMachineScaleSet…
1
vote
1 answer

Azure virtual machine scale set with NIC error

I have Configured Azure virtual machine scale set with NIC and what I am trying to do is to apply the backendpool config of basic Load Balancer to new standard Load Balancer. After implementing the advice from my team I want to remove NIC from my…
moxikind
  • 15
  • 5
1
vote
0 answers

Azure Scale Set Could not find the modules: 'Az.Accounts' with Version: ''

We created a Windows 2022 Data Centre Edition Scale Set set up as a Dev Ops agent pool yesterday. I have an Agent Job that uses this agent pool. This job has a single inline Azure Powershell task. Task Version: 5.* Inline Script: Write-Output "STUFF…
1
vote
2 answers

Agent Pool - VMSS and a high scaleing issue

we have a deployed VMSS to run an Agent Pool inside our environment. In Azure DevOps we have set Standby = 0 as the Agents are not required the whole time. When now a single pipeline starts, we see a "Scaling out" from 0 to 4, I would expect from 0…
Jörg Lang
  • 171
  • 1
  • 1
  • 8
1
vote
1 answer

Azure VMSS Flexible Orchestration - Custom Resource Names

I have created VMSS Flexible with orchestration mode with proper names, yet VMs, NICs, IPs got randomly generated suffixes. Is it possible to automatically create VMs and corresponding resources, when adding instances through VMSS? I’d like to have…
Max
  • 35
  • 11
1
vote
1 answer

Azure Custom Extensions Blob return 403 Forbidden

I've tried to run a custom script to install software silently to my Windows Scaleset Here is my configurations Arm template added to virtualMachineProfile like child resource to ExtensionProfile here is the code { "name":…
1
vote
2 answers

Basic Load Balancer with scale set "Virtual Machine Scale Set cannot use a basic SKU load balancer when singlePlacementGroup property is false (lar)."

I am creating BasicLoadBalancer on Azure with scaleset. While adding the backend pool scaleset instance getting an below error Virtual Machine Scale Set cannot use a basic SKU load balancer when singlePlacementGroup property is false (large scale…
Shiv
  • 144
  • 10
1
vote
0 answers

Azure Application Gateway (Standard V1) returns 502 while deleting instances in VM Scale Set

While deleting instance in VM Scale Set, Application Gateway returns 502 for a brief few seconds. I have made sure that: Connection draining on the HTTP setting used is enabled, timeout is set to 60s Cookie affinity is disabled No NSG blocking…
1
vote
2 answers

use azure cli command to change the reference image of vmss and update the vm running under the vmss

I want to use azure cli command to change the reference image of vmss and update the vm running under the vmss. I used to use UI to update the reference image as shown below. I tried following…
Komal Nagada
  • 89
  • 1
  • 5
1
vote
1 answer

Resize vmss in azure using azure cli

I want to update size of vmss from Standard_F16s_v2 to Standard_F32s_v2 I usually do it from Ui but for some requirement I have to do it from a script so I tried to follow the…
Komal Nagada
  • 89
  • 1
  • 5
1
vote
2 answers

Find historical node count of node pool

We are running a Kubernetes cluster on AKS. The cluster runs on multiple node pools. Autoscaling is enabled to make sure nodes are added or removed when necessary. I can see the current used amount of nodes by navigating to AKS -> Settings -> Node…
Max
  • 12,622
  • 16
  • 73
  • 101
1
vote
1 answer

How to add multiple Azure VMSS to one basic tier Azure load balancer?

I am using VMSS with basic tier load balancer and public IP address. When I am doing application update, I want to create new VMSS to make sure it is not affecting the old VMSS. Now I am creating new VMSS with new IP and load balancer. However, I do…
1w2w3y
  • 61
  • 5
1
vote
1 answer

Different processor for same size VMSS

We have Service Fabric application, that creates VMSS when we create the clusters. While creation we have to select the VM Size. We have 3 different regions where we have deployed our application. Although the VM size selected is same for all 3…
1
vote
1 answer

Run script extension on Linux VM using Terraform

I'm running trying to run a bash script on an Azure Linux VM scaleset using custom script extensions, I have the script uploaded into an Azure Storage account already. The bash script is meant to install ngix, on the VM Scaleset. The script runs…
user989865
  • 627
  • 3
  • 9
  • 25