You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've discovered there is a VM Scale set, that seems to be in "failed" ProvisioningState. The nodes are running fine, but one extension on the VMSS has been reported as failed. Unfortunately this is a managed service and we don't have much of an access to troubleshoot this further. However we checked the state of the VMSS via the API with the command below:
az vmss get-instance-view --resource-group groupName --name vmssName
"name": "AKSLinuxExtension",
"statusesSummary": [
{
"code": "ProvisioningState/succeeded",
"count": 1
},
{
"code": "ProvisioningState/failed",
"count": 1
}
]
}
],
"orchestrationServices": null,
"statuses": [
{
"code": "ProvisioningState/failed/VMExtensionHandlerNonTransientError",
"displayStatus": "Provisioning failed",
"level": "Error",
"message": "The handler for VM extension type 'Microsoft.AKS.Compute.AKS.Linux.AKSNode' has reported terminal failure for VM extension 'AKSLinuxExtension' with error message: 'Failed to download artifacts: [ExtensionDownloadError] Timeout downloading extension package. Elapsed: 0:08:04.405546 URIs tried: 2/3. Last error: [HttpError] Download failed both on the primary and fallback channels. IOError [Errno -3] Temporary failure in name resolution -- 6 attempts made]'.\r\n \r\n'Manifest download failed for the extension.
When we ran on all VMSS nodes the same command it showed that everything looks fine:
The question here is - how do we fix the error of the VMSS? Will restarting it fix the issue without a downtime, or there is another more pragmatic way to clear this error?
The text was updated successfully, but these errors were encountered:
Petkoii0
changed the title
VM Scale set is in a Failed state, because of an extension
VM Scale set is in a Failed ProvisioningState, because of an extension
Jun 14, 2023
+1 Facing exactly same issue where the PUT operation on VMSS shows success even though the individual VMs are having extension provisioning as Failed. The VMSS rolling upgrade is also moving forward from instance to instance when it shouldn't in this case.
We've discovered there is a VM Scale set, that seems to be in "failed" ProvisioningState. The nodes are running fine, but one extension on the VMSS has been reported as failed. Unfortunately this is a managed service and we don't have much of an access to troubleshoot this further. However we checked the state of the VMSS via the API with the command below:
az vmss get-instance-view --resource-group groupName --name vmssName
When we ran on all VMSS nodes the same command it showed that everything looks fine:
The question here is - how do we fix the error of the VMSS? Will restarting it fix the issue without a downtime, or there is another more pragmatic way to clear this error?
The text was updated successfully, but these errors were encountered: