Skip to content

Commit b952ca5

Browse files
authored
Merge pull request #106460 from cephalin/issue49046
#49046
2 parents 198ce5d + 9f74535 commit b952ca5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to deploy apps to a non-production slot and autoswap into
44

55
ms.assetid: e224fc4f-800d-469a-8d6a-72bcde612450
66
ms.topic: article
7-
ms.date: 09/19/2019
7+
ms.date: 03/04/2020
88
ms.custom: fasttrack-edit
99

1010
---
@@ -19,7 +19,7 @@ Deploying your application to a non-production slot has the following benefits:
1919
* Deploying an app to a slot first and swapping it into production makes sure that all instances of the slot are warmed up before being swapped into production. This eliminates downtime when you deploy your app. The traffic redirection is seamless, and no requests are dropped because of swap operations. You can automate this entire workflow by configuring [auto swap](#Auto-Swap) when pre-swap validation isn't needed.
2020
* After a swap, the slot with previously staged app now has the previous production app. If the changes swapped into the production slot aren't as you expect, you can perform the same swap immediately to get your "last known good site" back.
2121

22-
Each App Service plan tier supports a different number of deployment slots. There's no additional charge for using deployment slots. To find out the number of slots your app's tier supports, see [App Service limits](https://docs.microsoft.com/azure/azure-resource-manager/management/azure-subscription-service-limits#app-service-limits).
22+
Each App Service plan tier supports a different number of deployment slots. There's no additional charge for using deployment slots. To find out the number of slots your app's tier supports, see [App Service limits](../azure-resource-manager/management/azure-subscription-service-limits.md#app-service-limits).
2323

2424
To scale your app to a different tier, make sure that the target tier supports the number of slots your app already uses. For example, if your app has more than five slots, you can't scale it down to the **Standard** tier, because the **Standard** tier supports only five deployment slots.
2525

@@ -299,7 +299,7 @@ New-AzWebAppSlot -ResourceGroupName [resource group name] -Name [app name] -Slot
299299
---
300300
### Initiate a swap with a preview (multi-phase swap), and apply destination slot configuration to the source slot
301301
```powershell
302-
$ParametersObject = @{targetSlot = "[slot name – e.g. production]"}
302+
$ParametersObject = @{targetSlot = "[slot name – e.g. "production"]"}
303303
Invoke-AzResourceAction -ResourceGroupName [resource group name] -ResourceType Microsoft.Web/sites/slots -ResourceName [app name]/[slot name] -Action applySlotConfig -Parameters $ParametersObject -ApiVersion 2015-07-01
304304
```
305305

@@ -312,7 +312,7 @@ Invoke-AzResourceAction -ResourceGroupName [resource group name] -ResourceType M
312312
---
313313
### Swap deployment slots
314314
```powershell
315-
$ParametersObject = @{targetSlot = "[slot name – e.g. production]"}
315+
$ParametersObject = @{targetSlot = "[slot name – e.g. "production"]"}
316316
Invoke-AzResourceAction -ResourceGroupName [resource group name] -ResourceType Microsoft.Web/sites/slots -ResourceName [app name]/[slot name] -Action slotsswap -Parameters $ParametersObject -ApiVersion 2015-07-01
317317
```
318318

includes/azure-websites-limits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: rothja
33
ms.service: cost-management-billing
44
ms.topic: include
5-
ms.date: 08/09/2019
5+
ms.date: 03/04/2020
66
ms.author: jroth
77
---
88
| Resource | Free | Shared | Basic | Standard | Premium (v2) | Isolated </th> |
@@ -30,7 +30,7 @@ ms.author: jroth
3030
| [Autoscale](../articles/app-service/manage-scale-up.md) | | | |X |X |X |
3131
| [WebJobs](../articles/app-service/webjobs-create.md)<sup>11</sup> |X |X |X |X |X |X |
3232
| [Endpoint monitoring](../articles/app-service/web-sites-monitor.md) | | |X |X |X |X |
33-
| [Staging slots](../articles/app-service/deploy-staging-slots.md) | | | |5 |20 |20 |
33+
| [Staging slots](../articles/app-service/deploy-staging-slots.md) per app| | | |5 |20 |20 |
3434
| SLA | | |99.95%|99.95%|99.95%|99.95%|
3535

3636
<sup>1</sup>Apps and storage quotas are per App Service plan unless noted otherwise.

0 commit comments

Comments
 (0)