Skip to content

Commit a672b5a

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/azure-docs-pr (branch live)
2 parents b9467c3 + 609d4bd commit a672b5a

File tree

84 files changed

+426
-913
lines changed

Some content is hidden

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

84 files changed

+426
-913
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5286,6 +5286,16 @@
52865286
"redirect_url": "/azure/app-service-mobile",
52875287
"redirect_document_id": false
52885288
},
5289+
{
5290+
"source_path": "articles/application-gateway/configure-waf-custom-rules.md",
5291+
"redirect_url": "/azure/web-application-firewall/ag/configure-waf-custom-rules",
5292+
"redirect_document_id": false
5293+
},
5294+
{
5295+
"source_path": "articles/application-gateway/create-custom-waf-rules.md",
5296+
"redirect_url": "/azure/web-application-firewall/ag/create-custom-waf-rules",
5297+
"redirect_document_id": false
5298+
},
52895299
{
52905300
"source_path": "articles/application-gateway/application-gateway-customize-waf-rules-portal.md",
52915301
"redirect_url": "/azure/web-application-firewall/ag/application-gateway-customize-waf-rules-portal",

articles/active-directory/develop/app-registrations-training-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Here's where you can find the equivalent functionality in the new experience:
5454
- The functionality controlled by the **Multi-tenant** toggle in the legacy experience has been replaced by **Supported account types** on the **Authentication** page. For more information about how multi-tenant maps to the supported account type options, see [this quickstart](quickstart-modify-supported-accounts.md).
5555
- **Logout URL** is now on the **Authentication** page.
5656
- **Application type** is no longer a valid field. Instead, redirect URIs (which you can find on the **Authentication** page) determine which app types are supported.
57-
- **App ID URI** is now called **Application ID URI** and you can find this on the **Expose an API** blade. In the legacy experience, this property was auto-registered using the following format: `https://{tenantdomain}/{appID}` (for example, `https://microsoft.onmicrosoft.com/aeb4be67-a634-4f20-9a46-e0d4d4f1f96d`). In the new format, it's auto-generated as `api://{appID}`, but it needs to be explicitly saved. In Azure AD B2C tenants, the `https://{tenantdomain}/{appID}` format is still used.
57+
- **App ID URI** is now called **Application ID URI** and you can find this on the **Expose an API** blade. In the legacy experience, this property was auto-registered using the following format: `https://{tenantdomain}/{appID}` (for example, `https://microsoft.onmicrosoft.com/aeb4be67-a634-4f20-9a46-e0d4d4f1f96d`). In the new experience, it's auto-generated as `api://{appID}`, but it needs to be explicitly saved. In Azure AD B2C tenants, the `https://{tenantdomain}/{appID}` format is still used.
5858

5959
## Reply URLs/redirect URls
6060

articles/aks/use-multiple-node-pools.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,20 @@ The following limitations apply when you create and manage AKS clusters that sup
2929

3030
* You can't delete the default (first) node pool.
3131
* The HTTP application routing add-on can't be used.
32+
* The AKS cluster must use the Standard SKU load balancer to use multiple node pools, the feature is not supported with Basic SKU load balancers.
33+
* The AKS cluster must use virtual machine scale sets for the nodes.
3234
* You can't add or delete node pools using an existing Resource Manager template as with most operations. Instead, [use a separate Resource Manager template](#manage-node-pools-using-a-resource-manager-template) to make changes to node pools in an AKS cluster.
3335
* The name of a node pool must start with a lowercase letter and can only contain alphanumeric characters. For Linux node pools the length must be between 1 and 12 characters, for Windows node pools the length must be between 1 and 6 characters.
3436
* The AKS cluster can have a maximum of eight node pools.
3537
* The AKS cluster can have a maximum of 400 nodes across those eight node pools.
3638
* All node pools must reside in the same subnet.
37-
* The AKS cluster must use virtual machine scale sets for the nodes.
3839

3940
## Create an AKS cluster
4041

4142
To get started, create an AKS cluster with a single node pool. The following example uses the [az group create][az-group-create] command to create a resource group named *myResourceGroup* in the *eastus* region. An AKS cluster named *myAKSCluster* is then created using the [az aks create][az-aks-create] command. A *--kubernetes-version* of *1.13.10* is used to show how to update a node pool in a following step. You can specify any [supported Kubernetes version][supported-versions].
4243

4344
> [!NOTE]
44-
> The *Basic* load balanacer SKU is not supported when using multiple node pools. By default, AKS clusters are created with the *Standard* loadbalacer SKU.
45+
> The *Basic* load balanacer SKU is not supported when using multiple node pools. By default, AKS clusters are created with the *Standard* load balancer SKU from Azure CLI and Azure portal.
4546
4647
```azurecli-interactive
4748
# Create a resource group in East US

articles/app-service/containers/configure-custom-container.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ The following lists show supported and unsupported Docker Compose configuration
162162
> [!NOTE]
163163
> Any other options not explicitly called out are ignored in Public Preview.
164164
165+
## Configure VNet integration
166+
167+
Using a custom container with VNet integration may require additional container configuration. See [Integrate your app with an Azure Virtual Network](../web-sites-integrate-with-vnet.md).
168+
165169
## Next steps
166170
167171
> [!div class="nextstepaction"]

articles/app-service/deploy-staging-slots.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ You can also customize the warm-up behavior with one or both of the following [a
215215
- `WEBSITE_SWAP_WARMUP_PING_STATUSES`: Valid HTTP response codes for the warm-up operation. Add this app setting with a comma-separated list of HTTP codes. An example is `200,202` . If the returned status code isn't in the list, the warmup and swap operations are stopped. By default, all response codes are valid.
216216

217217
> [!NOTE]
218-
> `<applicationInitialization>` is part each app start-up, where as these two app settings apply only to slot swaps.
218+
> The `<applicationInitialization>` configuration element is part of each app start-up, whereas the two warm-up behavior app settings apply only to slot swaps.
219219
220220
If you have any problems, see [Troubleshoot swaps](#troubleshoot-swaps).
221221

@@ -330,7 +330,7 @@ Remove-AzResource -ResourceGroupName [resource group name] -ResourceType Microso
330330

331331
## Automate with ARM templates
332332

333-
[ARM Templates](https://docs.microsoft.com/en-us/azure/azure-resource-manager/template-deployment-overview) are declarative JSON files used to automate the deployment and configuration of Azure resources. To swap slots using ARM templates, you will set two properties on the *Microsoft.Web/sites/slots* and *Microsoft.Web/sites* resources:
333+
[ARM Templates](https://docs.microsoft.com/azure/azure-resource-manager/template-deployment-overview) are declarative JSON files used to automate the deployment and configuration of Azure resources. To swap slots using ARM templates, you will set two properties on the *Microsoft.Web/sites/slots* and *Microsoft.Web/sites* resources:
334334

335335
- `buildVersion`: this is a string property which represents the current version of the app deployed in the slot. For example: "v1", "1.0.0.1", or "2019-09-20T11:53:25.2887393-07:00".
336336
- `targetBuildVersion`: this is a string property that specifies what `buildVersion` the slot should have. If the targetBuildVersion does not equal the current `buildVersion`, then this will trigger the swap operation by finding the slot which has the specified `buildVersion`.

articles/application-gateway/configure-waf-custom-rules.md

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

0 commit comments

Comments
 (0)