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

Authorization failed while wget azure REST API

I am trying to collect azure metrics using REST api. I have a free subscription to azure account. I am using the following wget to get the json message. wget…
Nilotpal
  • 3,237
  • 4
  • 34
  • 56
1
vote
2 answers

Azure Service Fabric ARM template Provisioning Failed

I have a script that facilitates an ARM template to provision an Azure Service Fabric cluster (official windows servers) among other dependencies like storage and such. I do not provision through the portal. Facts: Two days ago, I used this script…
1
vote
2 answers

How do I deploy an application in Azure Scale Set VMs?

I have created a Azure Scale Set upto 3 Linux VMs using the Azure Portal. I have successfully installed java, maven and git on the first VM. I was able to run my App on the first VM. I have a fan out trigger at 60% and fan in at 25%. Whenever my…
amitection
  • 2,696
  • 8
  • 25
  • 46
1
vote
2 answers

How to delay an Azure Load Balancer Probe's first execution?

I have a custom azure load balancer probe which calls into our application code. The application is installed as part of creating the VM. It may take up to 10 minutes to install. In the mean time the probe is called by the load balancer, and if…
1
vote
1 answer

Azure Template: Parameter 'osProfile' is not allowed and Required parameter 'osProfile' is missing

I'm trying create a Auto Scale using VHD and this is my template: ... { "type": "Microsoft.Compute/virtualMachineScaleSets", "sku": { "name": "[parameters('vmSize')]", "tier": "Standard", "capacity": "[parameters('instanceCount')]" …
1
vote
1 answer

Run custom programs on all instances within a Azure Virtual Machine Scale Set

There must be something I'm missing, but I've generated a virtual machine scale set from a custom image and I'd like to run a web server .exe on all of them. Is the only option to manually get into each individual instance and run the code? Do I do…
1
vote
1 answer

How can I deploy an Azure virtual machine scale set to an existing virtual network?

I have successfully deployed a VMSS with an AD server in the same VLAN. However, when I try to deploy a second VMSS it create a new virtual network, placing it away from my existing AD. How do I deploy the second VMSS into the same virtual network…
0
votes
0 answers

Unable to edit vmss instance secrets

I have a VMSS as a node poll of a service fabric managed cluster. Through the azure portal I added a certificate from a key vault to this node pool. The deployment failed with the message: The secret retrieved from (edited) is not a properly…
Damian
  • 2,752
  • 1
  • 29
  • 28
0
votes
0 answers

Azure VMSS agent frequently turning to updating status

I have created a self hosting agent pool in AzureDevOps which uses a VMSS agent. The VMSS agent has a cloud-init.txt file which deploys docker and az cli in ubuntu 18.04-LTS which is required by the pipeline. This is the cloud-init…
0
votes
0 answers

Docker build error thrown in Self Hosted VMSS agent

I am running a Azure DevOps build through a self hosted VMSS agent pool. The stand-by vms is 0, so when I trigger a build, it creates a VM. The VMSS agent installs docker with a cloud-init script. The contents of it is as…
0
votes
0 answers

AzureDevops VMSS agent not able to connect to private ACR with private endpoint

I have set-up private ACR set up with public access and admin credentials disabled. It has a private endpoint approved ,setup with private connection,private dns zones configured. The private endpoints reside in subnetEndpoint in virtualNetwork…
0
votes
1 answer

(AuthorizationFailed) Error when trying to update image of containerApp from Azure Devops

I am using devops pipeline to update a containerApp. The devops pipeline uses a self hosted agent pool which uses a VMSS agent. in the pipeline cli task i create a system assigned managed identity for the containerApp using az cli commands and in…
0
votes
1 answer

Not be able to set up VM Insight in VMSS using AMA from portal

-Incident After setting up VM Insight to be enabled, I get the page to enable it and cannot see the logs.so I can not confirm Insight & logs after wating more than 10 minuites By enablingI have confirmed that the data collection rules for VMSS have…
0
votes
1 answer

How can one deploy a Flexible VM Scale Set with multiple VM SKUs in it?

A few articles from Azure blog, as well as its own documentation, mention that one "can use different VM SKUs in the same scale sets" [1][2][3] However, I've searched everywhere (including Microsoft forums, Stackoverflow and GitHub) and couldn't…
dan
  • 1,144
  • 12
  • 17
0
votes
0 answers

GET request on endpoint hosted on Linux VM in Azure

I have 2 Azure VMs (Windows, Linux) using same virtual network. Both are able to ping each other using the public ip. I deployed a java application having its own endpoint in Linux VM and I am using url…