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
1 answer

Azure user-assigned managed service identity not working from within Azure VM

I have a VM in a scale set which has a user-assigned MSI attached to it. This MSI has read access to a specific key vault, set-up in its access policy tab. From within a VM I need to access the key vault. az CLI is installed on the VM. When trying…
baouss
  • 1,312
  • 1
  • 22
  • 52
0
votes
1 answer

Azure auto scale-in will kick out the 2nd user who might be connected to the instance which is automatically terminated due to auto scale-in

I have a question related to azure auto scaling, when load/stress, increased the instances will scale out and after the scale out if another user connected with one of the instance in the same scale set and in a few minutes, let's say load decreased…
0
votes
1 answer

Vm scale set does not work with internal standard sku Azure load balancer backend pool

I want to load-balance my VM scale set in a VNet. My requirements are that: I do not want public IP accessibility and I do need https health probes. While both Azure load balancers (in either basic or standard sku) seem to be capable of balancing…
baouss
  • 1,312
  • 1
  • 22
  • 52
0
votes
1 answer

Individually tag instance in Azure VMSS

Is it possible to individually tag a specific vm instance in a scale set? Something like this command: az resource tag --tags "name=hostname.example.com ip=10.0.0.10" --id…
J00MZ
  • 675
  • 1
  • 10
  • 27
0
votes
2 answers

Use password in powershell for Azure Scale Set

I'm using a powershell script for automatically add new vm's in a scale set to my domain via Custom Script Extension. In the script I wrote the password blank (in testing environment only), because it has to be without any prompt. But this isn't…
0
votes
2 answers

Azure scale set or Availability Set

We have a standard 3 tier web application that need to be migrated into cloud (more of VM based lift and shift instead of cloud native at this point). Wondering which factors should I consider to make a decision if Azure Scale Set or Azure…
Saturn CAU
  • 155
  • 2
  • 8
0
votes
1 answer

How to create Auto single Deployment release CD in azure DevOps for multiple instances of ScaleSet VM

I am working to create CI-CD build release piplline in Azaure DevOps. I am able to create Build successfully but now facing issue to create release CD. I have created one ScaleSet VM in Azure DevOps and 3 instances of it. Now, I want to create…
0
votes
1 answer

How to get the Azure scale set name from the VM name on the computer

I'm trying to grab the name of the Azure VM scale set from the computer's name. I'm able to get close, but not reliably so. I've found this article which mentions the (vmss name)(base 36 instance id) format which I found to be fairly accurate,…
Norrec
  • 531
  • 4
  • 17
0
votes
1 answer

Fast shared disk in a Azure VM Scale set cluster

we are using Azure VM Scale sets to compute a larger job. In some stages we want the machines to share data with each other. We have tried Blob Storage for this but it's way to slow. We are looking at either make the computers talking to each other…
NPehrsson
  • 1,548
  • 18
  • 26
0
votes
1 answer

Getting error: "failed to run Kubelet: could not init cloud provider "azure": No credentials provided for AAD application" after updating to k8s v1.11

I'm working with a k8s cluster running on Azure VMSS and just tested upgrading to k8s v1.11 on my cluster deployment. However, suddenly my Azure JSON configuration file which was working fine for v1.10.4 seems to go undetected by Kubelet. Kubelet…
feiti
  • 87
  • 3
  • 12
0
votes
1 answer

SNAT Ports for Outgoing Connection from Azure (Stack)

I don't manage to get a working outgoing connection from my load-balanced VMs created in Azure Stack. I have scenario 2 of the documentation: "Public Load Balancer associated with a VM (no Instance Level Public IP address on the instance)". Only…
BaluJr.
  • 1,010
  • 2
  • 11
  • 25
0
votes
2 answers

Modifying/Replacing Probe causes CannotModifyRuleUsedByProbeUsedByVMSS

I've created a vmss with a loadbalancer and a probe configured for http 80 address /. I have now updated my app with a dedicated alive route, e.g. /api/alive that is much quicker replying that the base url, and that's the one I'd like to use as a…
0
votes
1 answer

How can I extend OS disks for Windows Server smalldisk based VMSS or Service Fabric clusters?

When we deploy Service Fabric cluster VMSS with -smalldisk images like ARM template parameters: "vmImageOffer": { "value": "WindowsServerSemiAnnual" }, "vmImageSku": { "value":…
0
votes
2 answers

Update-AzureRmVmss command is not working

I created azure vm scale set with custom script extension. After some time I updated custom script extension and wanted to apply changes on each virtual machine on scale set. However nothing is changing. To update VM Scale Set I used…
support_ms
  • 1,873
  • 1
  • 18
  • 33
0
votes
1 answer

VMSS Custom image pros/cons

I need to install .net framework 4.7 on my VMSS. I tried using script extension but since I need to reboot the machine after the installation, it was a bit complex. I decided to go with custom image. I created a VM, installed the .net framework and…
George Moussa
  • 331
  • 1
  • 2
  • 14