Skip to content

Commit 1d6a6f5

Browse files
author
Simonx Xu
committed
Merge branch 'main' into pr/7827
2 parents cae581e + 781393a commit 1d6a6f5

1,109 files changed

Lines changed: 18925 additions & 9666 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openpublishing.build.ps1

Lines changed: 0 additions & 17 deletions
This file was deleted.

.openpublishing.redirection.developer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5779,6 +5779,11 @@
57795779
"source_path": "support/developer/visualstudio/visual-basic/ide/mouse-wheel-events-do-not-work.md",
57805780
"redirect_url": "/previous-versions/troubleshoot/visualstudio/ide/mouse-wheel-events-do-not-work",
57815781
"redirect_document_id": false
5782+
},
5783+
{
5784+
"source_path": "support/developer/visualstudio/installation/known-issues-visual-studio-2012-update.md",
5785+
"redirect_url": "/troubleshoot/developer/visualstudio/welcome-visual-studio",
5786+
"redirect_document_id": false
57825787
}
57835788
]
57845789
}

.openpublishing.redirection.json

Lines changed: 645 additions & 0 deletions
Large diffs are not rendered by default.

support/azure/.openpublishing.redirection.azure.json

Lines changed: 790 additions & 0 deletions
Large diffs are not rendered by default.

support/azure/app-service/faqs-app-service-linux.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,7 @@ summary: |
1919
2020
sections:
2121
- name: Built-in images
22-
questions:
23-
- question: |
24-
I want to fork the built-in Docker containers that the platform provides. Where can I find those files?
25-
answer: |
26-
You can find all Docker files on [GitHub](https://github.com/Azure/app-service-quickstart-docker-images).
27-
22+
questions:
2823
- question: |
2924
What are the expected values for the Startup File section when I configure the runtime stack?
3025
answer: |
@@ -293,3 +288,4 @@ additionalContent: |
293288
- [Environment variables and app settings reference](/azure/app-service/reference-app-settings)
294289
295290
[!INCLUDE [Azure Help Support](../../includes/azure-help-support.md)]
291+

support/azure/app-service/scaling-web-app-faq.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ metadata:
44
description: Describe common questions and answers about scaling in Azure App Service.
55
services: app-service
66
author: auolivei
7-
ms.reviewer: amehrot, rimarr, genli
7+
ms.reviewer: genli
88
ms.topic: faq
9-
ms.date: 08/03/2022
9+
ms.date: 12/05/2024
1010
ms.author: auolivei
1111
ms.service: azure-app-service
1212
title: Frequently asked questions about scaling web apps in Azure App Service
@@ -62,7 +62,7 @@ sections:
6262
Autoscale is triggered when metrics exceed preconfigured boundaries. Sometimes, you might notice that the capacity is only partially filled compared to what you expected. This behavior might occur when the number of instances you want isn't available. In that scenario, autoscale partially fills in with the available number of instances. Autoscale then runs the rebalance logic to get more capacity. It allocates the remaining instances, and this allocation might take a few minutes. If you don't see the expected number of instances after a few minutes, it might be because the partial refill was enough to bring the metrics within the boundaries. Or, autoscale might have scaled down because it reached the lower metrics boundary.
6363
6464
- question: |
65-
When I scale up an App Service Plan to a Premium V3 tier, the "Premium V3 is not supported for this scale unit. Please consider redeploying or cloning your app." error occurs. What should I do?
65+
When I scale up an App Service Plan to a Premium V3 tier, the "Premium V3 isn't supported for this scale unit. Please consider redeploying or cloning your app." error occurs. What should I do?
6666
answer: |
6767
The Premium V3 feature requires the site to run on the newest hardware infrastructure. To scale up an App Service Plan to Premium V3, the Web App must be running in an App Service deployment that supports PremiumV3. For more information, see [Scale up from an unsupported resource group and region combination](/azure/app-service/app-service-configure-premium-tier#scale-up-from-an-unsupported-resource-group-and-region-combination).
6868
@@ -76,5 +76,10 @@ sections:
7676
answer: |
7777
The file change audit logs "AppServiceFileAuditLogs" are only available for App Services in Premium, PremiumV2, and Isolated App Service Plans. If you need "AppServiceFileAuditLogs," you won't be able to scale down to the Basic tier. To have these audit logs available, configure your App Service Plan for Premium or higher tier.
7878
79+
- question: |
80+
I'm getting the "App Service Plans with fewer than 3 workers aren't allowed for zone redundancy. Requested number of workers: number" error. What should I do?
81+
answer: |
82+
[Availability zone support](/azure/reliability/reliability-app-service#availability-zone-support) requires at least three instances. Verify if the App Service Plan has zone redundancy enabled and if you have autoscale on the App Service Plan. If so, correct the autoscale rule to not set the number of instances to a value less than three.
83+
7984
8085
[!INCLUDE [Azure Help Support](../../includes/azure-help-support.md)]
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
title: ContainerGroupQuotaReached error when deploying Spot containers
3+
description: Provides solutions to the ContainerGroupQuotaReached error that occurs when you deploy a Spot container to Azure Container Instances.
4+
ms.date: 10/28/2024
5+
ms.reviewer: chiragpa, v-weizhu
6+
ms.service: azure-container-instances
7+
ms.custom: sap:Configuration and Setup
8+
---
9+
# ContainerGroupQuotaReached error - Container group quota exceeded in region
10+
11+
This article provides a solution to the Spot container deployment error ContainerGroupQuotaReached.
12+
13+
## Symptoms
14+
15+
When you deploy a Spot container to Azure Container Instances (ACI) from the Azure portal or by using the Azure CLI, the deployment fails with a ContainerGroupQuotaReached error like the following text:
16+
17+
> Code: ContainerGroupQuotaReached
18+
> Message: Resource type 'Microsoft.ContainerInstance/containerGroups' container group quota 'StandardSpotCores' exceeded in region 'westeurope'. Limit: '100', Usage: '12' Requested: '90'.
19+
20+
Here's a command example for deploying a Spot container:
21+
22+
```azurecli
23+
az container create -g MyResourceGroup --name myapp --image myimage:latest --priority spot --cpu 10
24+
```
25+
26+
> [!NOTE]
27+
> Currently, Spot containers are only available in these regions: East US 2, West Europe, and West.
28+
29+
## Cause
30+
31+
This issue occurs because the container group default quota exceeds the default Spot quota bound by your Azure subscription. The following table shows the default Spot quota for different subscription types:
32+
33+
|Subscription type| StandardSpotCores limit|
34+
|---|---|
35+
|Enterprise Agreement| 100|
36+
|Default| 10|
37+
|Others| 0|
38+
39+
To check the subscription type of your billing account, see [Check the type of your account](/azure/cost-management-billing/manage/view-all-accounts#check-the-type-of-your-account).
40+
41+
## Solution
42+
43+
To resolve this issue, increase the StandardSpotCores limit. To do so, use one of the following methods:
44+
45+
- Change the subscription type to Default to get 10 StandardSpotCores limit.
46+
- [Change the subscription type to Enterprise Agreement](/azure/cost-management-billing/manage/mosp-ea-transfer) to get 100 StandardSpotCores limits.
47+
- File support request to increase capacity for Spot containers. For more information, see [How do I file quota requests for ACI Spot containers?](/azure/container-instances/container-instances-faq#spot-containers-on-azure-container-instances--preview)
48+
49+
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

support/azure/azure-container-instances/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ items:
1919
href: configuration-setup/long-image-pulls.md
2020
- name: Error "service unavailable" when deploying GPU-enabled containers
2121
href: configuration-setup/service-unavailable-gpu-enabled-aci-deployment-failures.md
22+
- name: ContainerGroupQuotaReached - container group quota exceeded in region
23+
href: configuration-setup/spot-container-group-quota-reached-error.md
2224
- name: ServiceUnavailable - container group quota exceeded in region
2325
href: configuration-setup/service-unavailable-container-group-quota-exceeded.md
2426
- name: ServiceUnavailable (409) - requested resource is not available in the location

support/azure/azure-container-registry/acr-authentication-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot Azure Container Registry authentication issues
33
description: Helps resolve the most common authentication errors that occur when you pull images from an Azure container registry.
44
ms.date: 08/19/2024
55
ms.reviewer: chiragpa, v-rekhanain, v-weizhu
6-
ms.service: azure-container-instances
6+
ms.service: azure-container-registry
77
ms.custom: sap:Authenticate to registry
88
---
99
# Troubleshoot Azure Container Registry authentication issues

support/azure/azure-container-registry/authentication-required.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: AndreiBarbu95
66
ms.author: andbar
77
editor: v-jsitser
88
ms.reviewer: avtakkar, v-rekhanain, v-leedennis
9-
ms.service: azure-container-instances
9+
ms.service: azure-container-registry
1010
ms.topic: troubleshooting-problem-resolution
1111
ms.custom: sap:Image Pull Issues
1212
#Customer intent: As an Azure Container Registry user, I want to fix an "unauthorized: authentication required" error so that I can pull a container image or artifact successfully.

0 commit comments

Comments
 (0)