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
0
votes
2 answers

Terraform script for provisioning azure Virtual machine scale set along with custom data or cloud init

I would like to know the terraform script for provisioning azure Virtual machine scale set along with custom data or cloud init. I tried many ways to run my script against VMSS but its not working.As per my understanding during provisioning of VMSS…
0
votes
1 answer

New relic infra agent on azure Virtual machine scale set

I would like to install and configure newrelic infra agent on VMSS. I have explored links but couldn't find any helpful. Could anyone help to start working on this? I could see the following link but this is working for VM but not for VMSS.Though I…
0
votes
1 answer

AKS - Terraform's network_profile block

When creating an aks cluster using terraform and azurerm provider you can specify this block : network_profile { network_plugin = var.network_plugin network_policy = var.network_policy load_balancer_sku = "Standard" …
Will
  • 1,792
  • 2
  • 23
  • 44
0
votes
2 answers

Hosting multiple applications using Azure Virtual Machine Scale Sets

Currently we own an application (App-A) which is hosted on Service Fabric cluster using VMSS instances. The VMSS instance has a public IP which points to App-A to route customer traffic. I want to add a new application (App-B) to the same service…
0
votes
1 answer

Differance between Guest OS metrics and Host OS metrics in Azure VMSS

I am setting up auto-scale rules in Azure VMSS. I can choose from two set of metrics, Host and Guest. As per the documentation, both are emitted from same VMs. My tech stack on each VM - [Tomcat 9.0.30][2] - [APR 1.7.0][2] - 9…
0
votes
1 answer

Using VM Scale Sets as Application Gateway Backend

I've been trying to use Azure VMSS as my Application Gateway backend but I keep getting this message in my backend pool details page Virtual machine scale set 'vmss-name' was added to this backend pool. Upgrade all the instances of 'vmss-name' for…
0
votes
1 answer

update Azure Vm Scalset Image to new one

I have created one scalset in azure with custom vm image and now I want to change image refernce of that vm to new one. How we can do this?
Hrishikesh
  • 299
  • 1
  • 14
0
votes
1 answer

customScript extension in Azure VMSS with

I used to create an extension as below --version 2.0 --publisher Microsoft.Azure.Extensions \ --settings '{\ "fileUris": ["https://$saName.blob.core.windows.net/$scName/agent.sh"],\ "commandToExecute": "sh agent.sh"\ }' However, recently we have…
Steve
  • 175
  • 1
  • 3
  • 14
0
votes
1 answer

Change the target VM ScaleSet in an existing and running Azure DevOps Agent Pool?

Cheers! Maybe some of you already have done something similar. We created a dedicated, self hosted AZ DevOps Agent Pool in one of our subscriptions with terraform. So terraform being terraform and DevOps doing its magic with the agent pools, any…
0
votes
1 answer

Is AuthenticationSettings mandatory for AKV extension in Azure for VMSS?

https://learn.microsoft.com/en-us/azure/virtual-machines/extensions/key-vault-windows The above documentation gives an important note: Important The 'authenticationSettings' property is required only for VMs with user assigned identities. It…
KRR
  • 43
  • 5
0
votes
1 answer

Deallocate Azure VMSS based on tag and current powerstate

I am attempting to get a list of VMSS that have a specific tag and are still powered/allocated and then deallocate those VMSS. I have not seen a property in Get-AzVmss that shows the allocation or power state of the VMSS. I did however find if I dig…
0
votes
1 answer

Assigning User Assigned Identity to Azure VMSS fails

I have a VMSS resource linked to a Service Fabric cluster. I have modified the ARM templates to have user managed identity for VMSS. "variables": { "vmssApiVersion": "2017-03-30", ... .. } .... "resources": [ { "type":…
0
votes
1 answer

/usr/local/ reset for custom centos7 image on azure scale set

We're using Packer to construct a custom centos7 image for an Azure scale set. Part of this includes a custom rpm that we have created that builds git from source (can't use community repos so we make our own) and installs it to the /usr/local/bin…
Metarract
  • 1
  • 2
0
votes
0 answers

I need to Specify OS Disk Name while Creating Azure VMSS using PowerShell

I want to Specify OS Disk Name while Creating VMSS using PowerShell to overcome the random OS Disk name like "VMSSNAME_1686_disk1_b5f021da0ba7409fbe7d028bdd50". Command : Set-AzVmssStorageProfile $vmssConfig ` -OsDiskCreateOption…
0
votes
1 answer

Will I be able to use Scale sets feature in Azure if I have a dependency where a manual input needs to be given for every new instance of VM Scale set

Will I be able to use Scale sets feature in Azure if I have a dependency where a manual input SHOULD needs to be given for every new VM initiated in Scale set( an OTP should be entered manually which is generated based on the key generated by the…